]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/gdbserver/Makefile.in
Use VEC for target_desc.reg_defs
[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 vec-ipa.o \
404 ${IPA_DEPFILES}
405
406 IPA_LIB = libinproctrace.so
407
408 $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
409 rm -f $(IPA_LIB)
410 $(CC_LD) -shared -fPIC -Wl,--soname=$(IPA_LIB) -Wl,--no-undefined $(INTERNAL_CFLAGS) \
411 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
412
413 # Put the proper machine-specific files first, so M-. on a machine
414 # specific routine gets the one for the correct machine.
415 # The xyzzy stuff below deals with empty DEPFILES
416 TAGS: ${TAGFILES}
417 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
418 `find ${srcdir}/../config -name ${XM_FILE} -print` \
419 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
420 `for i in yzzy ${DEPFILES}; do \
421 if [ x$$i != xyzzy ]; then \
422 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
423 fi; \
424 done` \
425 ${TAGFILES}
426 tags: TAGS
427
428 clean:
429 rm -f *.o ${ADD_FILES} *~
430 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
431 rm -f $(IPA_LIB)
432 rm -f *-generated.c
433 rm -f stamp-xml
434 rm -f $(DEPDIR)/*.Po
435 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
436
437 maintainer-clean realclean distclean: clean
438 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
439 rm -rf $(GNULIB_BUILDDIR)
440 rm -f Makefile config.status config.h stamp-h config.log
441 rm -f Makefile
442
443 subdir_do: force
444 @for i in $(DODIRS); do \
445 case $$i in \
446 $(REQUIRED_SUBDIRS)) \
447 if [ ! -f ./$$i/Makefile ] ; then \
448 echo "Missing $$i/Makefile" >&2 ; \
449 exit 1 ; \
450 fi ;; \
451 esac ; \
452 if [ -f ./$$i/Makefile ] ; then \
453 if (cd ./$$i; \
454 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
455 else exit 1 ; fi ; \
456 else true ; fi ; \
457 done
458
459 config.h: stamp-h ; @true
460 stamp-h: config.in config.status
461 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
462
463 Makefile: Makefile.in config.status
464 CONFIG_HEADERS="" $(SHELL) ./config.status
465
466 $(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
467 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
468 CONFIG_COMMANDS="depfiles" \
469 CONFIG_HEADERS= \
470 CONFIG_LINKS= \
471 $(SHELL) config.status
472
473 config.status: configure configure.srv $(srcdir)/../../bfd/development.sh
474 $(SHELL) ./config.status --recheck
475
476 # automatic rebuilding in automake-generated Makefiles requires
477 # this rule in the toplevel Makefile, which, with GNU make, causes
478 # the desired updates through the implicit regeneration of the Makefile
479 # and all of its prerequisites.
480 am--refresh:
481 @:
482
483 force:
484
485 version-generated.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
486 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
487 $(host_alias) $(target_alias) $@
488
489 xml-builtin-generated.c: stamp-xml; @true
490 stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
491 rm -f xml-builtin.tmp
492 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
493 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin-generated.c
494 echo stamp > stamp-xml
495
496 .PRECIOUS: xml-builtin.c
497
498 # GNU Make has an annoying habit of putting *all* the Makefile variables
499 # into the environment, unless you include this target as a circumvention.
500 # Rumor is that this will be fixed (and this target can be removed)
501 # in GNU Make 4.0.
502 .NOEXPORT:
503
504 # GNU Make 3.63 has a different problem: it keeps tacking command line
505 # overrides onto the definition of $(MAKE). This variable setting
506 # will remove them.
507 MAKEOVERRIDES =
508
509 regdat_sh = $(srcdir)/../regformats/regdat.sh
510
511 UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
512
513 # Note, we only build the IPA if -fvisibility=hidden is supported in
514 # the first place.
515 IPAGENT_CFLAGS = $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
516 -fPIC -DIN_PROCESS_AGENT \
517 -fvisibility=hidden
518
519 IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
520
521 # Rules for special cases.
522
523 ax-ipa.o: ax.c
524 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
525 $(POSTCOMPILE)
526
527 ax.o: ax.c
528 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
529 $(POSTCOMPILE)
530
531 # Rules for objects that go in the in-process agent.
532
533 %-ipa.o: %-generated.c
534 $(IPAGENT_COMPILE) $<
535 $(POSTCOMPILE)
536
537 %-ipa.o: %.c
538 $(IPAGENT_COMPILE) $<
539 $(POSTCOMPILE)
540
541 # Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one.
542 # Therefore, this one needs to be before "%.o: %.c" for it to be considered for
543 # files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c.
544 #
545 # Later versions of GNU Make choose the rule with the shortest stem, so it would
546 # work in any order.
547
548 %-ipa.o: %-ipa.c
549 $(IPAGENT_COMPILE) $<
550 $(POSTCOMPILE)
551
552 %-ipa.o: ../common/%.c
553 $(IPAGENT_COMPILE) $<
554 $(POSTCOMPILE)
555
556 # Rules for objects that go in the gdbserver binary.
557
558 %.o: %-generated.c
559 $(COMPILE) $<
560 $(POSTCOMPILE)
561
562 %.o: %.c
563 $(COMPILE) $<
564 $(POSTCOMPILE)
565
566 %.o: ../arch/%.c
567 $(COMPILE) $<
568 $(POSTCOMPILE)
569
570 %.o: ../common/%.c
571 $(COMPILE) $<
572 $(POSTCOMPILE)
573
574 %.o: ../nat/%.c
575 $(COMPILE) $<
576 $(POSTCOMPILE)
577
578 %.o: ../target/%.c
579 $(COMPILE) $<
580 $(POSTCOMPILE)
581
582 # Rules for register format descriptions. Suffix destination files with
583 # -generated to identify and clean them easily.
584
585 %-generated.c: ../regformats/%.dat | $(regdat_sh)
586 $(SHELL) $(regdat_sh) $< $@
587
588 %-generated.c: ../regformats/arm/%.dat | $(regdat_sh)
589 $(SHELL) $(regdat_sh) $< $@
590
591 %-generated.c: ../regformats/i386/%.dat | $(regdat_sh)
592 $(SHELL) $(regdat_sh) $< $@
593
594 %-generated.c: ../regformats/rs6000/%.dat | $(regdat_sh)
595 $(SHELL) $(regdat_sh) $< $@
596
597 #
598 # Dependency tracking.
599 #
600
601 ifeq ($(DEPMODE),depmode=gcc3)
602 # Note that we put the dependencies into a .Tpo file, then move them
603 # into place if the compile succeeds. We need this because gcc does
604 # not atomically write the dependency output file.
605 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
606 -MF $(DEPDIR)/$(basename $(@F)).Tpo
607 override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
608 $(DEPDIR)/$(basename $(@F)).Po
609 else
610 override COMPILE.pre = source='$<' object='$@' libtool=no \
611 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
612 # depcomp handles atomicity for us, so we don't need a postcompile
613 # step.
614 override POSTCOMPILE =
615 endif
616
617 # A list of all the objects we might care about in this build, for
618 # dependency tracking.
619 all_object_files = $(OBS) $(GDBREPLAY_OBS) $(IPA_OBJS)
620
621 # Ensure that generated files are created early. Use order-only
622 # dependencies if available. They require GNU make 3.80 or newer,
623 # and the .VARIABLES variable was introduced at the same time.
624 ifdef .VARIABLES
625 $(all_object_files): | $(generated_files)
626 else
627 $(all_object_files) : $(generated_files)
628 endif
629
630 # Dependencies.
631 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
632
633 # Disable implicit make rules.
634 include $(srcdir)/../disable-implicit-rules.mk
635
636 # Do not delete intermediate files (e.g. *-generated.c).
637 .SECONDARY:
638
639 # This is the end of "Makefile.in".