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