daily update
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
1 # Copyright (C) 1989-2013 Free Software Foundation, Inc.
2
3 # This file is part of GDB.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 prefix = @prefix@
19 exec_prefix = @exec_prefix@
20
21 host_alias = @host_alias@
22 target_alias = @target_alias@
23 version_host = @version_host@
24 version_target = @version_target@
25 program_transform_name = @program_transform_name@
26 bindir = @bindir@
27 libdir = @libdir@
28 tooldir = $(libdir)/$(target_alias)
29
30 datarootdir = @datarootdir@
31 datadir = @datadir@
32 mandir = @mandir@
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = @infodir@
43 htmldir = $(prefix)/html
44 includedir = @includedir@
45
46 SHELL = @SHELL@
47 EXEEXT = @EXEEXT@
48
49 INSTALL = @INSTALL@
50 INSTALL_PROGRAM = @INSTALL_PROGRAM@
51 INSTALL_DATA = @INSTALL_DATA@
52 RANLIB = @RANLIB@
53
54 CC = @CC@
55
56 # Dependency tracking information.
57 DEPMODE = @CCDEPMODE@
58 DEPDIR = @DEPDIR@
59 depcomp = $(SHELL) $(srcdir)/../depcomp
60
61 # Note that these are overridden by GNU make-specific code below if
62 # GNU make is used. The overrides implement dependency tracking.
63 COMPILE.pre = $(CC)
64 COMPILE.post = -c -o $@
65 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
66 POSTCOMPILE = @true
67
68 # Directory containing source files. Don't clean up the spacing,
69 # this exact string is matched for by the "configure" script.
70 srcdir = @srcdir@
71 abs_top_srcdir=@abs_top_srcdir@
72 abs_srcdir=@abs_srcdir@
73 VPATH = @srcdir@
74
75 # It is also possible that you will need to add -I/usr/include/sys to the
76 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
77 # is where it should be according to Posix).
78
79 # Set this up with gcc if you have gnu ld and the loader will print out
80 # line numbers for undefinded refs.
81 #CC-LD=gcc -static
82 CC-LD=${CC}
83
84 # Where is the "include" directory? Traditionally ../include or ./include
85 INCLUDE_DIR = ${srcdir}/../../include
86 INCLUDE_DEP = $$(INCLUDE_DIR)
87
88 # Where is ust? These will be empty if ust was not available.
89 ustlibs = @ustlibs@
90 ustinc = @ustinc@
91
92 # gnulib
93 GNULIB_BUILDDIR = build-gnulib-gdbserver
94 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
95 INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
96
97 # Generated headers in the gnulib directory. These must be listed
98 # so that they are generated before other files are compiled.
99 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
100
101 # All the includes used for CFLAGS and for lint.
102 # -I. for config files.
103 # -I${srcdir} for our headers.
104 # -I$(srcdir)/../regformats for regdef.h.
105 INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
106 -I$(srcdir)/../regformats -I$(INCLUDE_DIR) \
107 $(INCGNU)
108
109 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
110 # from the config/ directory.
111 GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
112 #PROFILE_CFLAGS = -pg
113
114 WARN_CFLAGS = @WARN_CFLAGS@
115 WERROR_CFLAGS = @WERROR_CFLAGS@
116
117 WARN_CFLAGS_NO_FORMAT = `echo " $(WARN_CFLAGS) " \
118 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
119
120 # CFLAGS is specifically reserved for setting from the command line
121 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
122 CFLAGS = @CFLAGS@
123
124 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
125 INTERNAL_CFLAGS_BASE = ${CFLAGS} ${GLOBAL_CFLAGS} \
126 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS}
127 INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
128 INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER
129
130 # LDFLAGS is specifically reserved for setting from the command line
131 # when running make.
132 LDFLAGS = @LDFLAGS@
133 INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
134
135 # All source files that go into linking GDB remote server.
136
137 SFILES= $(srcdir)/gdbreplay.c $(srcdir)/inferiors.c $(srcdir)/dll.c \
138 $(srcdir)/mem-break.c $(srcdir)/proc-service.c \
139 $(srcdir)/proc-service.list $(srcdir)/regcache.c \
140 $(srcdir)/remote-utils.c $(srcdir)/server.c $(srcdir)/target.c \
141 $(srcdir)/thread-db.c $(srcdir)/utils.c \
142 $(srcdir)/linux-arm-low.c $(srcdir)/linux-bfin-low.c \
143 $(srcdir)/linux-cris-low.c $(srcdir)/linux-crisv32-low.c \
144 ${srcdir}/i386-low.c $(srcdir)/i387-fp.c \
145 $(srcdir)/linux-ia64-low.c $(srcdir)/linux-low.c \
146 $(srcdir)/linux-m32r-low.c \
147 $(srcdir)/linux-m68k-low.c $(srcdir)/linux-mips-low.c \
148 $(srcdir)/linux-nios2-low.c \
149 $(srcdir)/linux-ppc-low.c \
150 $(srcdir)/linux-s390-low.c \
151 $(srcdir)/linux-sh-low.c $(srcdir)/linux-sparc-low.c \
152 $(srcdir)/linux-x86-low.c \
153 $(srcdir)/linux-xtensa-low.c \
154 $(srcdir)/linux-tile-low.c \
155 $(srcdir)/win32-arm-low.c $(srcdir)/win32-i386-low.c \
156 $(srcdir)/win32-low.c $(srcdir)/wincecompat.c \
157 $(srcdir)/hostio.c $(srcdir)/hostio-errno.c \
158 $(srcdir)/common/vec.c $(srcdir)/common/gdb_vecs.c \
159 $(srcdir)/common/common-utils.c $(srcdir)/common/xml-utils.c \
160 $(srcdir)/common/linux-osdata.c $(srcdir)/common/ptid.c \
161 $(srcdir)/common/buffer.c $(srcdir)/common/linux-btrace.c \
162 $(srcdir)/common/filestuff.c
163
164 DEPFILES = @GDBSERVER_DEPFILES@
165
166 LIBOBJS = @LIBOBJS@
167
168 SOURCES = $(SFILES)
169 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
170
171 OBS = agent.o ax.o inferiors.o regcache.o remote-utils.o server.o signals.o target.o \
172 utils.o version.o vec.o gdb_vecs.o \
173 mem-break.o hostio.o event-loop.o tracepoint.o \
174 xml-utils.o common-utils.o ptid.o buffer.o format.o filestuff.o \
175 dll.o notif.o tdesc.o \
176 $(XML_BUILTIN) \
177 $(DEPFILES) $(LIBOBJS)
178 GDBREPLAY_OBS = gdbreplay.o version.o
179 GDBSERVER_LIBS = @GDBSERVER_LIBS@
180 XM_CLIBS = @LIBS@
181 CDEPS = $(srcdir)/proc-service.list
182
183 # XML files to compile in to gdbserver, if any.
184 XML_DIR = $(srcdir)/../features
185 XML_FILES = @srv_xmlfiles@
186 XML_BUILTIN = @srv_xmlbuiltin@
187
188 IPA_DEPFILES = @IPA_DEPFILES@
189 extra_libraries = @extra_libraries@
190
191 SUBDIRS = $(GNULIB_BUILDDIR)
192 CLEANDIRS = $(SUBDIRS)
193
194 # List of subdirectories in the build tree that must exist.
195 # This is used to force build failures in existing trees when
196 # a new directory is added.
197 # The format here is for the `case' shell command.
198 REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR)
199
200 FLAGS_TO_PASS = \
201 "prefix=$(prefix)" \
202 "exec_prefix=$(exec_prefix)" \
203 "infodir=$(infodir)" \
204 "datarootdir=$(datarootdir)" \
205 "docdir=$(docdir)" \
206 "htmldir=$(htmldir)" \
207 "pdfdir=$(pdfdir)" \
208 "libdir=$(libdir)" \
209 "mandir=$(mandir)" \
210 "datadir=$(datadir)" \
211 "includedir=$(includedir)" \
212 "against=$(against)" \
213 "DESTDIR=$(DESTDIR)" \
214 "AR=$(AR)" \
215 "AR_FLAGS=$(AR_FLAGS)" \
216 "CC=$(CC)" \
217 "CFLAGS=$(CFLAGS)" \
218 "CXX=$(CXX)" \
219 "CXXFLAGS=$(CXXFLAGS)" \
220 "DLLTOOL=$(DLLTOOL)" \
221 "LDFLAGS=$(LDFLAGS)" \
222 "RANLIB=$(RANLIB)" \
223 "MAKEINFO=$(MAKEINFO)" \
224 "MAKEHTML=$(MAKEHTML)" \
225 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
226 "INSTALL=$(INSTALL)" \
227 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
228 "INSTALL_DATA=$(INSTALL_DATA)" \
229 "RUNTEST=$(RUNTEST)" \
230 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
231
232 # All generated files which can be included by another file.
233 generated_files = config.h $(GNULIB_H)
234
235 .c.o:
236 $(COMPILE) $<
237 $(POSTCOMPILE)
238
239 all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
240 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
241
242 # Traditionally "install" depends on "all". But it may be useful
243 # not to; for example, if the user has made some trivial change to a
244 # source file and doesn't care about rebuilding or just wants to save the
245 # time it takes for make to check that all is up to date.
246 # install-only is intended to address that need.
247 install: all
248 @$(MAKE) $(FLAGS_TO_PASS) install-only
249
250 install-only:
251 n=`echo gdbserver | sed '$(program_transform_name)'`; \
252 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
253 if [ x"$(IPA_DEPFILES)" != x ]; then \
254 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
255 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
256 fi; \
257 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
258 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
259 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
260
261 uninstall: force
262 n=`echo gdbserver | sed '$(program_transform_name)'`; \
263 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
264 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
265 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
266
267 installcheck:
268 check:
269 info dvi pdf:
270 install-info:
271 install-pdf:
272 html:
273 install-html:
274 clean-info: force
275 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
276
277 gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU)
278 rm -f gdbserver$(EXEEXT)
279 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
280 $(LIBGNU) $(GDBSERVER_LIBS) $(XM_CLIBS)
281
282 $(LIBGNU) $(GNULIB_H): all-lib
283 all-lib: $(GNULIB_BUILDDIR)/Makefile
284 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
285 .PHONY: all-lib
286
287 gdbreplay$(EXEEXT): $(GDBREPLAY_OBS)
288 rm -f gdbreplay$(EXEEXT)
289 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
290 $(XM_CLIBS)
291
292 IPA_OBJS=ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o tdesc-ipa.o ${IPA_DEPFILES}
293
294 IPA_LIB=libinproctrace.so
295
296 $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
297 rm -f $(IPA_LIB)
298 ${CC-LD} -shared -fPIC -Wl,--no-undefined $(INTERNAL_CFLAGS) \
299 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
300
301 # Put the proper machine-specific files first, so M-. on a machine
302 # specific routine gets the one for the correct machine.
303 # The xyzzy stuff below deals with empty DEPFILES
304 TAGS: ${TAGFILES}
305 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
306 `find ${srcdir}/../config -name ${XM_FILE} -print` \
307 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
308 `for i in yzzy ${DEPFILES}; do \
309 if [ x$$i != xyzzy ]; then \
310 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
311 fi; \
312 done` \
313 ${TAGFILES}
314 tags: TAGS
315
316 clean:
317 rm -f *.o ${ADD_FILES} *~
318 rm -f version.c
319 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
320 rm -f $(IPA_LIB)
321 rm -f aarch64.c
322 rm -f reg-arm.c reg-bfin.c i386.c reg-ia64.c reg-m32r.c reg-m68k.c
323 rm -f reg-sh.c reg-sparc.c reg-spu.c amd64.c i386-linux.c
324 rm -f reg-cris.c reg-crisv32.c amd64-linux.c reg-xtensa.c
325 rm -f reg-tilegx.c reg-tilegx32.c
326 rm -f arm-with-iwmmxt.c
327 rm -f arm-with-vfpv2.c arm-with-vfpv3.c arm-with-neon.c
328 rm -f mips-linux.c mips64-linux.c
329 rm -f nios2-linux.c
330 rm -f powerpc-32.c powerpc-32l.c powerpc-64l.c powerpc-e500l.c
331 rm -f powerpc-altivec32l.c powerpc-cell32l.c powerpc-vsx32l.c
332 rm -f powerpc-altivec64l.c powerpc-cell64l.c powerpc-vsx64l.c
333 rm -f powerpc-isa205-32l.c powerpc-isa205-64l.c
334 rm -f powerpc-isa205-altivec32l.c powerpc-isa205-vsx32l.c powerpc-isa205-altivec64l.c
335 rm -f powerpc-isa205-vsx64l.c
336 rm -f s390-linux32.c s390-linux64.c s390x-linux64.c
337 rm -f tic6x-c64xp-linux.c tic6x-c64x-linux.c tic6x-c62x-linux.c
338 rm -f xml-builtin.c stamp-xml
339 rm -f i386-avx.c i386-avx-linux.c
340 rm -f amd64-avx.c amd64-avx-linux.c
341 rm -f i386-mmx.c i386-mmx-linux.c
342 rm -f x32.c x32-linux.c
343 rm -f x32-avx.c x32-avx-linux.c
344 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
345
346 maintainer-clean realclean distclean: clean
347 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
348 rm -rf $(GNULIB_BUILDDIR)
349 rm -f Makefile config.status config.h stamp-h config.log
350 rm -f Makefile
351
352 subdir_do: force
353 @for i in $(DODIRS); do \
354 case $$i in \
355 $(REQUIRED_SUBDIRS)) \
356 if [ ! -f ./$$i/Makefile ] ; then \
357 echo "Missing $$i/Makefile" >&2 ; \
358 exit 1 ; \
359 fi ;; \
360 esac ; \
361 if [ -f ./$$i/Makefile ] ; then \
362 if (cd ./$$i; \
363 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
364 else exit 1 ; fi ; \
365 else true ; fi ; \
366 done
367
368 config.h: stamp-h ; @true
369 stamp-h: config.in config.status
370 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
371
372 Makefile: Makefile.in config.status
373 CONFIG_HEADERS="" $(SHELL) ./config.status
374
375 $(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
376 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
377 CONFIG_COMMANDS="depfiles" \
378 CONFIG_HEADERS= \
379 CONFIG_LINKS= \
380 $(SHELL) config.status
381
382 config.status: configure configure.srv $(srcdir)/../development.sh
383 $(SHELL) ./config.status --recheck
384
385 # automatic rebuilding in automake-generated Makefiles requires
386 # this rule in the toplevel Makefile, which, with GNU make, causes
387 # the desired updates through the implicit regeneration of the Makefile
388 # and all of its prerequisites.
389 am--refresh:
390 @:
391
392 force:
393
394 version.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
395 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
396 $(version_host) $(version_target) version.c
397
398 xml-builtin.c: stamp-xml; @true
399 stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
400 rm -f xml-builtin.tmp
401 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
402 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin.c
403 echo stamp > stamp-xml
404
405 .PRECIOUS: xml-builtin.c
406
407 # GNU Make has an annoying habit of putting *all* the Makefile variables
408 # into the environment, unless you include this target as a circumvention.
409 # Rumor is that this will be fixed (and this target can be removed)
410 # in GNU Make 4.0.
411 .NOEXPORT:
412
413 # GNU Make 3.63 has a different problem: it keeps tacking command line
414 # overrides onto the definition of $(MAKE). This variable setting
415 # will remove them.
416 MAKEOVERRIDES=
417
418 gdb_proc_service_h = $(srcdir)/gdb_proc_service.h
419 regdat_sh = $(srcdir)/../regformats/regdat.sh
420 regdef_h = $(srcdir)/../regformats/regdef.h
421 regcache_h = $(srcdir)/regcache.h
422 signals_def = $(srcdir)/../../include/gdb/signals.def
423 signals_h = $(srcdir)/../../include/gdb/signals.h $(signals_def)
424 ptid_h = $(srcdir)/../common/ptid.h
425 ax_h = $(srcdir)/ax.h
426 agent_h = $(srcdir)/../common/agent.h
427 linux_btrace_h = $(srcdir)/../common/linux-btrace.h \
428 $(srcdir)/../common/btrace-common.h $(vec_h) $(ptid_h)
429 linux_osdata_h = $(srcdir)/../common/linux-osdata.h
430 vec_h = $(srcdir)/../common/vec.h
431 gdb_vecs_h = $(srcdir)/../common/gdb_vecs.h
432 host_defs_h = $(srcdir)/../common/host-defs.h
433 libiberty_h = $(srcdir)/../../include/libiberty.h
434 # Since everything must include server.h, we make that depend on
435 # generated files.
436 server_h = $(srcdir)/server.h $(regcache_h) $(srcdir)/target.h \
437 $(srcdir)/mem-break.h $(srcdir)/../common/gdb_signals.h \
438 $(srcdir)/../common/common-utils.h \
439 $(srcdir)/../common/xml-utils.h \
440 $(srcdir)/../common/buffer.h \
441 $(srcdir)/../common/gdb_assert.h \
442 $(srcdir)/../common/gdb_locale.h \
443 $(ptid_h) \
444 $(signals_h) \
445 $(libiberty_h) \
446 $(srcdir)/../../include/ansidecl.h \
447 $(generated_files)
448
449 gdbthread_h = $(srcdir)/gdbthread.h $(target_h) $(srcdir)/server.h
450 linux_low_h = $(srcdir)/linux-low.h $(gdbthread_h)
451
452 linux_ptrace_h = $(srcdir)/../common/linux-ptrace.h
453
454 gdb_thread_db_h = $(srcdir)/../common/gdb_thread_db.h
455
456 linux_procfs_h = $(srcdir)/../common/linux-procfs.h
457
458 lynx_low_h = $(srcdir)/lynx-low.h $(srcdir)/server.h
459
460 nto_low_h = $(srcdir)/nto-low.h
461
462 UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
463
464 # Note, we only build the IPA if -fvisibility=hidden is supported in
465 # the first place.
466 IPAGENT_CFLAGS = $(CPPFLAGS) $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
467 -fPIC -DIN_PROCESS_AGENT \
468 -fvisibility=hidden
469
470 IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
471
472 # In-process agent object rules
473 ax-ipa.o: ax.c
474 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
475 $(POSTCOMPILE)
476 tracepoint-ipa.o: tracepoint.c
477 $(IPAGENT_COMPILE) $<
478 $(POSTCOMPILE)
479 utils-ipa.o: utils.c
480 $(IPAGENT_COMPILE) $<
481 $(POSTCOMPILE)
482 format-ipa.o: ../common/format.c
483 $(IPAGENT_COMPILE) $<
484 $(POSTCOMPILE)
485 common-utils-ipa.o: ../common/common-utils.c
486 $(IPAGENT_COMPILE) $<
487 $(POSTCOMPILE)
488 remote-utils-ipa.o: remote-utils.c
489 $(IPAGENT_COMPILE) $<
490 $(POSTCOMPILE)
491 regcache-ipa.o: regcache.c
492 $(IPAGENT_COMPILE) $<
493 $(POSTCOMPILE)
494 i386-linux-ipa.o: i386-linux.c
495 $(IPAGENT_COMPILE) $<
496 $(POSTCOMPILE)
497 linux-i386-ipa.o: linux-i386-ipa.c
498 $(IPAGENT_COMPILE) $<
499 $(POSTCOMPILE)
500 linux-amd64-ipa.o: linux-amd64-ipa.c
501 $(IPAGENT_COMPILE) $<
502 $(POSTCOMPILE)
503 amd64-linux-ipa.o: amd64-linux.c
504 $(IPAGENT_COMPILE) $<
505 $(POSTCOMPILE)
506 tdesc-ipa.o: tdesc.c
507 $(IPAGENT_COMPILE) $<
508 $(POSTCOMPILE)
509
510 ax.o: ax.c
511 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
512 $(POSTCOMPILE)
513
514 signals.o: ../common/signals.c
515 $(COMPILE) $<
516 $(POSTCOMPILE)
517 linux-procfs.o: ../common/linux-procfs.c
518 $(COMPILE) $<
519 $(POSTCOMPILE)
520 linux-ptrace.o: ../common/linux-ptrace.c
521 $(COMPILE) $<
522 $(POSTCOMPILE)
523 common-utils.o: ../common/common-utils.c
524 $(COMPILE) $<
525 $(POSTCOMPILE)
526 vec.o: ../common/vec.c
527 $(COMPILE) $<
528 $(POSTCOMPILE)
529 gdb_vecs.o: ../common/gdb_vecs.c
530 $(COMPILE) $<
531 $(POSTCOMPILE)
532 xml-utils.o: ../common/xml-utils.c
533 $(COMPILE) $<
534 $(POSTCOMPILE)
535 linux-osdata.o: ../common/linux-osdata.c
536 $(COMPILE) $<
537 $(POSTCOMPILE)
538 ptid.o: ../common/ptid.c
539 $(COMPILE) $<
540 $(POSTCOMPILE)
541 buffer.o: ../common/buffer.c
542 $(COMPILE) $<
543 $(POSTCOMPILE)
544 format.o: ../common/format.c
545 $(COMPILE) $<
546 $(POSTCOMPILE)
547 filestuff.o: ../common/filestuff.c
548 $(COMPILE) $<
549 $(POSTCOMPILE)
550 agent.o: ../common/agent.c
551 $(COMPILE) $<
552 $(POSTCOMPILE)
553
554 linux-btrace.o: ../common/linux-btrace.c $(linux_btrace_h) $(server_h)
555 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
556
557 # We build vasprintf with -DHAVE_CONFIG_H because we want that unit to
558 # include our config.h file. Otherwise, some system headers do not get
559 # included, and the compiler emits a warning about implicitly defined
560 # functions (missing declaration).
561 vasprintf.o: $(srcdir)/../../libiberty/vasprintf.c
562 $(COMPILE) $< -DHAVE_CONFIG_H
563 $(POSTCOMPILE)
564 vsnprintf.o: $(srcdir)/../../libiberty/vsnprintf.c
565 $(COMPILE) $<
566 $(POSTCOMPILE)
567
568 i386_low_h = $(srcdir)/i386-low.h
569 win32_low_h = $(srcdir)/win32-low.h
570
571 aarch64.c : $(srcdir)/../regformats/aarch64.dat $(regdat_sh)
572 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/aarch64.dat aarch64.c
573 reg-arm.c : $(srcdir)/../regformats/reg-arm.dat $(regdat_sh)
574 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-arm.dat reg-arm.c
575 arm-with-iwmmxt.c : $(srcdir)/../regformats/arm-with-iwmmxt.dat $(regdat_sh)
576 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-iwmmxt.dat arm-with-iwmmxt.c
577 arm-with-vfpv2.c : $(srcdir)/../regformats/arm-with-vfpv2.dat $(regdat_sh)
578 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv2.dat arm-with-vfpv2.c
579 arm-with-vfpv3.c : $(srcdir)/../regformats/arm-with-vfpv3.dat $(regdat_sh)
580 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv3.dat arm-with-vfpv3.c
581 arm-with-neon.c : $(srcdir)/../regformats/arm-with-neon.dat $(regdat_sh)
582 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-neon.dat arm-with-neon.c
583 reg-bfin.c : $(srcdir)/../regformats/reg-bfin.dat $(regdat_sh)
584 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-bfin.dat reg-bfin.c
585 reg-cris.c : $(srcdir)/../regformats/reg-cris.dat $(regdat_sh)
586 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cris.dat reg-cris.c
587 reg-crisv32.c : $(srcdir)/../regformats/reg-crisv32.dat $(regdat_sh)
588 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-crisv32.dat reg-crisv32.c
589 i386.c : $(srcdir)/../regformats/i386/i386.dat $(regdat_sh)
590 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386.dat i386.c
591 i386-linux.c : $(srcdir)/../regformats/i386/i386-linux.dat $(regdat_sh)
592 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-linux.dat i386-linux.c
593 i386-avx.c : $(srcdir)/../regformats/i386/i386-avx.dat $(regdat_sh)
594 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx.dat i386-avx.c
595 i386-avx-linux.c : $(srcdir)/../regformats/i386/i386-avx-linux.dat $(regdat_sh)
596 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx-linux.dat i386-avx-linux.c
597 i386-mmx.c : $(srcdir)/../regformats/i386/i386-mmx.dat $(regdat_sh)
598 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx.dat i386-mmx.c
599 i386-mmx-linux.c : $(srcdir)/../regformats/i386/i386-mmx-linux.dat $(regdat_sh)
600 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx-linux.dat i386-mmx-linux.c
601 reg-ia64.c : $(srcdir)/../regformats/reg-ia64.dat $(regdat_sh)
602 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-ia64.dat reg-ia64.c
603 reg-m32r.c : $(srcdir)/../regformats/reg-m32r.dat $(regdat_sh)
604 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m32r.dat reg-m32r.c
605 reg-m68k.c : $(srcdir)/../regformats/reg-m68k.dat $(regdat_sh)
606 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m68k.dat reg-m68k.c
607 reg-cf.c : $(srcdir)/../regformats/reg-cf.dat $(regdat_sh)
608 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cf.dat reg-cf.c
609 mips-linux.c : $(srcdir)/../regformats/mips-linux.dat $(regdat_sh)
610 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-linux.dat mips-linux.c
611 mips-dsp-linux.c : $(srcdir)/../regformats/mips-dsp-linux.dat $(regdat_sh)
612 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-dsp-linux.dat mips-dsp-linux.c
613 mips64-linux.c : $(srcdir)/../regformats/mips64-linux.dat $(regdat_sh)
614 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-linux.dat mips64-linux.c
615 mips64-dsp-linux.c : $(srcdir)/../regformats/mips64-dsp-linux.dat $(regdat_sh)
616 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-dsp-linux.dat mips64-dsp-linux.c
617 nios2-linux.c : $(srcdir)/../regformats/nios2-linux.dat $(regdat_sh)
618 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/nios2-linux.dat nios2-linux.c
619 powerpc-32.c : $(srcdir)/../regformats/rs6000/powerpc-32.dat $(regdat_sh)
620 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32.dat powerpc-32.c
621 powerpc-32l.c : $(srcdir)/../regformats/rs6000/powerpc-32l.dat $(regdat_sh)
622 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32l.dat powerpc-32l.c
623 powerpc-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat $(regdat_sh)
624 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat powerpc-altivec32l.c
625 powerpc-cell32l.c : $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat $(regdat_sh)
626 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat powerpc-cell32l.c
627 powerpc-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat $(regdat_sh)
628 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat powerpc-vsx32l.c
629 powerpc-isa205-32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat $(regdat_sh)
630 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat powerpc-isa205-32l.c
631 powerpc-isa205-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat $(regdat_sh)
632 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat powerpc-isa205-altivec32l.c
633 powerpc-isa205-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat $(regdat_sh)
634 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat powerpc-isa205-vsx32l.c
635 powerpc-e500l.c : $(srcdir)/../regformats/rs6000/powerpc-e500l.dat $(regdat_sh)
636 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-e500l.dat powerpc-e500l.c
637 powerpc-64l.c : $(srcdir)/../regformats/rs6000/powerpc-64l.dat $(regdat_sh)
638 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-64l.dat powerpc-64l.c
639 powerpc-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat $(regdat_sh)
640 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat powerpc-altivec64l.c
641 powerpc-cell64l.c : $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat $(regdat_sh)
642 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat powerpc-cell64l.c
643 powerpc-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat $(regdat_sh)
644 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat powerpc-vsx64l.c
645 powerpc-isa205-64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat $(regdat_sh)
646 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat powerpc-isa205-64l.c
647 powerpc-isa205-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat $(regdat_sh)
648 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat powerpc-isa205-altivec64l.c
649 powerpc-isa205-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat $(regdat_sh)
650 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat powerpc-isa205-vsx64l.c
651 s390-linux32.c : $(srcdir)/../regformats/s390-linux32.dat $(regdat_sh)
652 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32.dat s390-linux32.c
653 s390-linux32v1.c : $(srcdir)/../regformats/s390-linux32v1.dat $(regdat_sh)
654 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v1.dat s390-linux32v1.c
655 s390-linux32v2.c : $(srcdir)/../regformats/s390-linux32v2.dat $(regdat_sh)
656 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v2.dat s390-linux32v2.c
657 s390-linux64.c : $(srcdir)/../regformats/s390-linux64.dat $(regdat_sh)
658 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64.dat s390-linux64.c
659 s390-linux64v1.c : $(srcdir)/../regformats/s390-linux64v1.dat $(regdat_sh)
660 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v1.dat s390-linux64v1.c
661 s390-linux64v2.c : $(srcdir)/../regformats/s390-linux64v2.dat $(regdat_sh)
662 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v2.dat s390-linux64v2.c
663 s390x-linux64.c : $(srcdir)/../regformats/s390x-linux64.dat $(regdat_sh)
664 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64.dat s390x-linux64.c
665 s390x-linux64v1.c : $(srcdir)/../regformats/s390x-linux64v1.dat $(regdat_sh)
666 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v1.dat s390x-linux64v1.c
667 s390x-linux64v2.c : $(srcdir)/../regformats/s390x-linux64v2.dat $(regdat_sh)
668 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v2.dat s390x-linux64v2.c
669
670 tic6x-c64xp-linux.c : $(srcdir)/../regformats/tic6x-c64xp-linux.dat $(regdat_sh)
671 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64xp-linux.dat tic6x-c64xp-linux.c
672 tic6x-c64x-linux.c : $(srcdir)/../regformats/tic6x-c64x-linux.dat $(regdat_sh)
673 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64x-linux.dat tic6x-c64x-linux.c
674 tic6x-c62x-linux.c : $(srcdir)/../regformats/tic6x-c62x-linux.dat $(regdat_sh)
675 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c62x-linux.dat tic6x-c62x-linux.c
676
677 reg-sh.c : $(srcdir)/../regformats/reg-sh.dat $(regdat_sh)
678 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sh.dat reg-sh.c
679 reg-sparc64.c : $(srcdir)/../regformats/reg-sparc64.dat $(regdat_sh)
680 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sparc64.dat reg-sparc64.c
681 reg-spu.c : $(srcdir)/../regformats/reg-spu.dat $(regdat_sh)
682 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-spu.dat reg-spu.c
683 amd64.c : $(srcdir)/../regformats/i386/amd64.dat $(regdat_sh)
684 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64.dat amd64.c
685 amd64-linux.c : $(srcdir)/../regformats/i386/amd64-linux.dat $(regdat_sh)
686 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-linux.dat amd64-linux.c
687 amd64-avx.c : $(srcdir)/../regformats/i386/amd64-avx.dat $(regdat_sh)
688 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx.dat amd64-avx.c
689 amd64-avx-linux.c : $(srcdir)/../regformats/i386/amd64-avx-linux.dat $(regdat_sh)
690 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx-linux.dat amd64-avx-linux.c
691 x32.c : $(srcdir)/../regformats/i386/x32.dat $(regdat_sh)
692 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32.dat x32.c
693 x32-linux.c : $(srcdir)/../regformats/i386/x32-linux.dat $(regdat_sh)
694 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-linux.dat x32-linux.c
695 x32-avx.c : $(srcdir)/../regformats/i386/x32-avx.dat $(regdat_sh)
696 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx.dat x32-avx.c
697 x32-avx-linux.c : $(srcdir)/../regformats/i386/x32-avx-linux.dat $(regdat_sh)
698 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx-linux.dat x32-avx-linux.c
699 reg-xtensa.c : $(srcdir)/../regformats/reg-xtensa.dat $(regdat_sh)
700 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-xtensa.dat reg-xtensa.c
701 reg-tilegx.c : $(srcdir)/../regformats/reg-tilegx.dat $(regdat_sh)
702 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-tilegx.dat reg-tilegx.c
703 reg-tilegx32.c : $(srcdir)/../regformats/reg-tilegx32.dat $(regdat_sh)
704 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-tilegx32.dat reg-tilegx32.c
705
706 #
707 # Dependency tracking. Most of this is conditional on GNU Make being
708 # found by configure; if GNU Make is not found, we fall back to a
709 # simpler scheme.
710 #
711
712 @GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
713 # Note that we put the dependencies into a .Tpo file, then move them
714 # into place if the compile succeeds. We need this because gcc does
715 # not atomically write the dependency output file.
716 @GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
717 @GMAKE_TRUE@ -MF $(DEPDIR)/$(basename $(@F)).Tpo
718 @GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
719 @GMAKE_TRUE@ $(DEPDIR)/$(basename $(@F)).Po
720 @GMAKE_TRUE@else
721 @GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
722 @GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
723 # depcomp handles atomicity for us, so we don't need a postcompile
724 # step.
725 @GMAKE_TRUE@override POSTCOMPILE =
726 @GMAKE_TRUE@endif
727
728 # A list of all the objects we might care about in this build, for
729 # dependency tracking.
730 all_object_files = $(OBS) $(GDBREPLAY_OBS)
731
732 # Ensure that generated files are created early. Use order-only
733 # dependencies if available. They require GNU make 3.80 or newer,
734 # and the .VARIABLES variable was introduced at the same time.
735 @GMAKE_TRUE@ifdef .VARIABLES
736 @GMAKE_TRUE@$(all_object_files): | $(generated_files)
737 @GMAKE_TRUE@else
738 $(all_object_files) : $(generated_files)
739 @GMAKE_TRUE@endif
740
741 # Dependencies.
742 @GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
743
744 # This is the end of "Makefile.in".
This page took 0.06667 seconds and 5 git commands to generate.