]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/gdbserver/Makefile.in
GDBserver self tests
[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) -x c++ $(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/job-control.c \
208 $(srcdir)/common/gdb_vecs.c \
209 $(srcdir)/common/new-op.c \
210 $(srcdir)/common/print-utils.c \
211 $(srcdir)/common/ptid.c \
212 $(srcdir)/common/rsp-low.c \
213 $(srcdir)/common/vec.c \
214 $(srcdir)/common/xml-utils.c \
215 $(srcdir)/nat/linux-btrace.c \
216 $(srcdir)/nat/linux-namespaces.c \
217 $(srcdir)/nat/linux-osdata.c \
218 $(srcdir)/nat/linux-personality.c \
219 $(srcdir)/nat/mips-linux-watch.c \
220 $(srcdir)/nat/ppc-linux.c \
221 $(srcdir)/nat/fork-inferior.c \
222 $(srcdir)/target/waitstatus.c
223
224 DEPFILES = @GDBSERVER_DEPFILES@
225
226 LIBOBJS = @LIBOBJS@
227
228 SOURCES = $(SFILES)
229 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
230
231 OBS = \
232 agent.o \
233 ax.o \
234 btrace-common.o \
235 buffer.o \
236 cleanups.o \
237 common-debug.o \
238 common-exceptions.o \
239 job-control.o \
240 common-regcache.o \
241 common-utils.o \
242 debug.o \
243 dll.o \
244 errors.o \
245 environ.o \
246 event-loop.o \
247 fileio.o \
248 filestuff.o \
249 format.o \
250 gdb_vecs.o \
251 hostio.o \
252 inferiors.o \
253 mem-break.o \
254 new-op.o \
255 notif.o \
256 print-utils.o \
257 ptid.o \
258 regcache.o \
259 remote-utils.o \
260 rsp-low.o \
261 selftest.o \
262 server.o \
263 signals.o \
264 signals-state-save-restore.o \
265 symbol.o \
266 target.o \
267 tdesc.o \
268 tracepoint.o \
269 utils.o \
270 vec.o \
271 version.o \
272 waitstatus.o \
273 xml-utils.o \
274 $(DEPFILES) \
275 $(LIBOBJS) \
276 $(XML_BUILTIN)
277
278 GDBREPLAY_OBS = gdbreplay.o version.o
279 GDBSERVER_LIBS = @GDBSERVER_LIBS@
280 XM_CLIBS = @LIBS@
281 CDEPS = $(srcdir)/proc-service.list
282
283 # XML files to compile in to gdbserver, if any.
284 XML_DIR = $(srcdir)/../features
285 XML_FILES = @srv_xmlfiles@
286 XML_BUILTIN = @srv_xmlbuiltin@
287
288 IPA_DEPFILES = @IPA_DEPFILES@
289 extra_libraries = @extra_libraries@
290
291 SUBDIRS = $(GNULIB_BUILDDIR) $(LIBIBERTY_BUILDDIR)
292 CLEANDIRS = $(SUBDIRS)
293
294 # List of subdirectories in the build tree that must exist.
295 # This is used to force build failures in existing trees when
296 # a new directory is added.
297 # The format here is for the `case' shell command.
298 REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR) | $(LIBIBERTY_BUILDDIR)
299
300 FLAGS_TO_PASS = \
301 "prefix=$(prefix)" \
302 "exec_prefix=$(exec_prefix)" \
303 "infodir=$(infodir)" \
304 "datarootdir=$(datarootdir)" \
305 "docdir=$(docdir)" \
306 "htmldir=$(htmldir)" \
307 "pdfdir=$(pdfdir)" \
308 "libdir=$(libdir)" \
309 "mandir=$(mandir)" \
310 "datadir=$(datadir)" \
311 "includedir=$(includedir)" \
312 "against=$(against)" \
313 "DESTDIR=$(DESTDIR)" \
314 "AR=$(AR)" \
315 "AR_FLAGS=$(AR_FLAGS)" \
316 "CC=$(CC)" \
317 "CFLAGS=$(CFLAGS)" \
318 "CXX=$(CXX)" \
319 "CXXFLAGS=$(CXXFLAGS)" \
320 "DLLTOOL=$(DLLTOOL)" \
321 "LDFLAGS=$(LDFLAGS)" \
322 "RANLIB=$(RANLIB)" \
323 "MAKEINFO=$(MAKEINFO)" \
324 "MAKEHTML=$(MAKEHTML)" \
325 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
326 "INSTALL=$(INSTALL)" \
327 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
328 "INSTALL_DATA=$(INSTALL_DATA)" \
329 "RUNTEST=$(RUNTEST)" \
330 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
331
332 # All generated files which can be included by another file.
333 generated_files = config.h $(GNULIB_H)
334
335 all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
336 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
337
338 # Traditionally "install" depends on "all". But it may be useful
339 # not to; for example, if the user has made some trivial change to a
340 # source file and doesn't care about rebuilding or just wants to save the
341 # time it takes for make to check that all is up to date.
342 # install-only is intended to address that need.
343 install: all
344 @$(MAKE) $(FLAGS_TO_PASS) install-only
345
346 install-only:
347 n=`echo gdbserver | sed '$(program_transform_name)'`; \
348 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
349 if [ x"$(IPA_DEPFILES)" != x ]; then \
350 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
351 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
352 fi; \
353 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
354 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
355 # Note that we run install and not install-only, as the latter
356 # is not part of GNU standards and in particular not provided
357 # in libiberty.
358 @$(MAKE) $(FLAGS_TO_PASS) DO=install "DODIRS=$(SUBDIRS)" subdir_do
359
360 uninstall: force
361 n=`echo gdbserver | sed '$(program_transform_name)'`; \
362 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
363 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
364 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
365
366 installcheck:
367 check:
368 info dvi pdf:
369 install-info:
370 install-pdf:
371 html:
372 install-html:
373 clean-info: force
374 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
375
376 gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU) $(LIBIBERTY)
377 rm -f gdbserver$(EXEEXT)
378 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
379 $(LIBGNU) $(LIBIBERTY) $(GDBSERVER_LIBS) $(XM_CLIBS)
380
381 $(LIBGNU) $(LIBIBERTY) $(GNULIB_H): all-lib
382 all-lib: $(GNULIB_BUILDDIR)/Makefile $(LIBIBERTY_BUILDDIR)/Makefile
383 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS="$(SUBDIRS)" subdir_do
384 .PHONY: all-lib
385
386 gdbreplay$(EXEEXT): $(GDBREPLAY_OBS) $(LIBGNU) $(LIBIBERTY)
387 rm -f gdbreplay$(EXEEXT)
388 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
389 $(XM_CLIBS) $(LIBGNU) $(LIBIBERTY)
390
391 IPA_OBJS = \
392 ax-ipa.o \
393 common-utils-ipa.o \
394 errors-ipa.o \
395 format-ipa.o \
396 print-utils-ipa.o \
397 regcache-ipa.o \
398 remote-utils-ipa.o \
399 rsp-low-ipa.o \
400 tdesc-ipa.o \
401 tracepoint-ipa.o \
402 utils-ipa.o \
403 ${IPA_DEPFILES}
404
405 IPA_LIB = libinproctrace.so
406
407 $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
408 rm -f $(IPA_LIB)
409 $(CC_LD) -shared -fPIC -Wl,--soname=$(IPA_LIB) -Wl,--no-undefined $(INTERNAL_CFLAGS) \
410 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
411
412 # Put the proper machine-specific files first, so M-. on a machine
413 # specific routine gets the one for the correct machine.
414 # The xyzzy stuff below deals with empty DEPFILES
415 TAGS: ${TAGFILES}
416 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
417 `find ${srcdir}/../config -name ${XM_FILE} -print` \
418 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
419 `for i in yzzy ${DEPFILES}; do \
420 if [ x$$i != xyzzy ]; then \
421 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
422 fi; \
423 done` \
424 ${TAGFILES}
425 tags: TAGS
426
427 clean:
428 rm -f *.o ${ADD_FILES} *~
429 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
430 rm -f $(IPA_LIB)
431 rm -f *-generated.c
432 rm -f stamp-xml
433 rm -f $(DEPDIR)/*.Po
434 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
435
436 maintainer-clean realclean distclean: clean
437 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
438 rm -rf $(GNULIB_BUILDDIR)
439 rm -f Makefile config.status config.h stamp-h config.log
440 rm -f Makefile
441
442 subdir_do: force
443 @for i in $(DODIRS); do \
444 case $$i in \
445 $(REQUIRED_SUBDIRS)) \
446 if [ ! -f ./$$i/Makefile ] ; then \
447 echo "Missing $$i/Makefile" >&2 ; \
448 exit 1 ; \
449 fi ;; \
450 esac ; \
451 if [ -f ./$$i/Makefile ] ; then \
452 if (cd ./$$i; \
453 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
454 else exit 1 ; fi ; \
455 else true ; fi ; \
456 done
457
458 config.h: stamp-h ; @true
459 stamp-h: config.in config.status
460 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
461
462 Makefile: Makefile.in config.status
463 CONFIG_HEADERS="" $(SHELL) ./config.status
464
465 $(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
466 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
467 CONFIG_COMMANDS="depfiles" \
468 CONFIG_HEADERS= \
469 CONFIG_LINKS= \
470 $(SHELL) config.status
471
472 config.status: configure configure.srv $(srcdir)/../../bfd/development.sh
473 $(SHELL) ./config.status --recheck
474
475 # automatic rebuilding in automake-generated Makefiles requires
476 # this rule in the toplevel Makefile, which, with GNU make, causes
477 # the desired updates through the implicit regeneration of the Makefile
478 # and all of its prerequisites.
479 am--refresh:
480 @:
481
482 force:
483
484 version-generated.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
485 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
486 $(host_alias) $(target_alias) $@
487
488 xml-builtin-generated.c: stamp-xml; @true
489 stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
490 rm -f xml-builtin.tmp
491 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
492 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin-generated.c
493 echo stamp > stamp-xml
494
495 .PRECIOUS: xml-builtin.c
496
497 # GNU Make has an annoying habit of putting *all* the Makefile variables
498 # into the environment, unless you include this target as a circumvention.
499 # Rumor is that this will be fixed (and this target can be removed)
500 # in GNU Make 4.0.
501 .NOEXPORT:
502
503 # GNU Make 3.63 has a different problem: it keeps tacking command line
504 # overrides onto the definition of $(MAKE). This variable setting
505 # will remove them.
506 MAKEOVERRIDES =
507
508 regdat_sh = $(srcdir)/../regformats/regdat.sh
509
510 UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
511
512 # Note, we only build the IPA if -fvisibility=hidden is supported in
513 # the first place.
514 IPAGENT_CFLAGS = $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
515 -fPIC -DIN_PROCESS_AGENT \
516 -fvisibility=hidden
517
518 IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
519
520 # Rules for special cases.
521
522 ax-ipa.o: ax.c
523 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
524 $(POSTCOMPILE)
525
526 ax.o: ax.c
527 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
528 $(POSTCOMPILE)
529
530 # Rules for objects that go in the in-process agent.
531
532 %-ipa.o: %-generated.c
533 $(IPAGENT_COMPILE) $<
534 $(POSTCOMPILE)
535
536 %-ipa.o: %.c
537 $(IPAGENT_COMPILE) $<
538 $(POSTCOMPILE)
539
540 # Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one.
541 # Therefore, this one needs to be before "%.o: %.c" for it to be considered for
542 # files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c.
543 #
544 # Later versions of GNU Make choose the rule with the shortest stem, so it would
545 # work in any order.
546
547 %-ipa.o: %-ipa.c
548 $(IPAGENT_COMPILE) $<
549 $(POSTCOMPILE)
550
551 %-ipa.o: ../common/%.c
552 $(IPAGENT_COMPILE) $<
553 $(POSTCOMPILE)
554
555 # Rules for objects that go in the gdbserver binary.
556
557 %.o: %-generated.c
558 $(COMPILE) $<
559 $(POSTCOMPILE)
560
561 %.o: %.c
562 $(COMPILE) $<
563 $(POSTCOMPILE)
564
565 %.o: ../arch/%.c
566 $(COMPILE) $<
567 $(POSTCOMPILE)
568
569 %.o: ../common/%.c
570 $(COMPILE) $<
571 $(POSTCOMPILE)
572
573 %.o: ../nat/%.c
574 $(COMPILE) $<
575 $(POSTCOMPILE)
576
577 %.o: ../target/%.c
578 $(COMPILE) $<
579 $(POSTCOMPILE)
580
581 # Rules for register format descriptions. Suffix destination files with
582 # -generated to identify and clean them easily.
583
584 %-generated.c: ../regformats/%.dat | $(regdat_sh)
585 $(SHELL) $(regdat_sh) $< $@
586
587 %-generated.c: ../regformats/arm/%.dat | $(regdat_sh)
588 $(SHELL) $(regdat_sh) $< $@
589
590 %-generated.c: ../regformats/i386/%.dat | $(regdat_sh)
591 $(SHELL) $(regdat_sh) $< $@
592
593 %-generated.c: ../regformats/rs6000/%.dat | $(regdat_sh)
594 $(SHELL) $(regdat_sh) $< $@
595
596 #
597 # Dependency tracking.
598 #
599
600 ifeq ($(DEPMODE),depmode=gcc3)
601 # Note that we put the dependencies into a .Tpo file, then move them
602 # into place if the compile succeeds. We need this because gcc does
603 # not atomically write the dependency output file.
604 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
605 -MF $(DEPDIR)/$(basename $(@F)).Tpo
606 override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
607 $(DEPDIR)/$(basename $(@F)).Po
608 else
609 override COMPILE.pre = source='$<' object='$@' libtool=no \
610 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
611 # depcomp handles atomicity for us, so we don't need a postcompile
612 # step.
613 override POSTCOMPILE =
614 endif
615
616 # A list of all the objects we might care about in this build, for
617 # dependency tracking.
618 all_object_files = $(OBS) $(GDBREPLAY_OBS) $(IPA_OBJS)
619
620 # Ensure that generated files are created early. Use order-only
621 # dependencies if available. They require GNU make 3.80 or newer,
622 # and the .VARIABLES variable was introduced at the same time.
623 ifdef .VARIABLES
624 $(all_object_files): | $(generated_files)
625 else
626 $(all_object_files) : $(generated_files)
627 endif
628
629 # Dependencies.
630 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
631
632 # Disable implicit make rules.
633 include $(srcdir)/../disable-implicit-rules.mk
634
635 # This is the end of "Makefile.in".