Create new common/pathstuff.[ch]
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
1 # Copyright (C) 1989-2018 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 CONFIG_SRC_SUBDIR = @CONFIG_SRC_SUBDIR@
47
48 SHELL = @SHELL@
49 EXEEXT = @EXEEXT@
50
51 INSTALL = @INSTALL@
52 INSTALL_PROGRAM = @INSTALL_PROGRAM@
53 INSTALL_DATA = @INSTALL_DATA@
54 RANLIB = @RANLIB@
55
56 CC = @CC@
57 CXX = @CXX@
58 CXX_DIALECT = @CXX_DIALECT@
59 AR = @AR@
60 AR_FLAGS = rc
61
62 # Dependency tracking information.
63 DEPMODE = @CCDEPMODE@
64 DEPDIR = @DEPDIR@
65 depcomp = $(SHELL) $(srcdir)/../depcomp
66
67 # Note that these are overridden by GNU make-specific code below if
68 # GNU make is used. The overrides implement dependency tracking.
69 COMPILE.pre = $(CXX) -x c++ $(CXX_DIALECT)
70 COMPILE.post = -c -o $@
71 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
72 POSTCOMPILE = @true
73
74 # Directory containing source files. Don't clean up the spacing,
75 # this exact string is matched for by the "configure" script.
76 srcdir = @srcdir@
77 abs_top_srcdir = @abs_top_srcdir@
78 abs_srcdir = @abs_srcdir@
79 VPATH = @srcdir@
80
81 # It is also possible that you will need to add -I/usr/include/sys to the
82 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
83 # is where it should be according to Posix).
84
85 # Set this up with gcc if you have gnu ld and the loader will print out
86 # line numbers for undefinded refs.
87 #CC_LD = g++ -static
88 CC_LD = $(CXX) $(CXX_DIALECT)
89
90 # Where is the "include" directory? Traditionally ../include or ./include
91 INCLUDE_DIR = ${srcdir}/../../include
92 INCLUDE_DEP = $$(INCLUDE_DIR)
93
94 LIBIBERTY_BUILDDIR = build-libiberty-gdbserver
95 LIBIBERTY = $(LIBIBERTY_BUILDDIR)/libiberty.a
96
97 # Where is ust? These will be empty if ust was not available.
98 ustlibs = @ustlibs@
99 ustinc = @ustinc@
100
101 # gnulib
102 GNULIB_BUILDDIR = build-gnulib-gdbserver
103 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
104 INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
105
106 # Generated headers in the gnulib directory. These must be listed
107 # so that they are generated before other files are compiled.
108 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
109
110 # All the includes used for CFLAGS and for lint.
111 # -I. for config files.
112 # -I${srcdir} for our headers.
113 # -I$(srcdir)/../regformats for regdef.h.
114 #
115 # We do not include ../target or ../nat in here because headers
116 # in those directories should be included with the subdirectory.
117 # e.g.: "target/wait.h".
118 #
119 INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
120 -I$(srcdir)/../regformats -I$(srcdir)/.. -I$(INCLUDE_DIR) \
121 $(INCGNU)
122
123 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
124 # from the config/ directory.
125 GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
126 #PROFILE_CFLAGS = -pg
127
128 WARN_CFLAGS = @WARN_CFLAGS@
129 WERROR_CFLAGS = @WERROR_CFLAGS@
130
131 WARN_CFLAGS_NO_FORMAT = `echo " $(WARN_CFLAGS) " \
132 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
133
134 # These are specifically reserved for setting from the command line
135 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
136 CFLAGS = @CFLAGS@
137 CXXFLAGS = @CXXFLAGS@
138 CPPFLAGS = @CPPFLAGS@
139
140 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
141 INTERNAL_CFLAGS_BASE = ${CXXFLAGS} ${GLOBAL_CFLAGS} \
142 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${CPPFLAGS}
143 INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
144 INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER
145
146 # LDFLAGS is specifically reserved for setting from the command line
147 # when running make.
148 LDFLAGS = @LDFLAGS@
149 INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
150
151 # All source files that go into linking GDB remote server.
152
153 SFILES = \
154 $(srcdir)/debug.c \
155 $(srcdir)/dll.c \
156 $(srcdir)/gdbreplay.c \
157 $(srcdir)/hostio.c \
158 $(srcdir)/hostio-errno.c \
159 $(srcdir)/i387-fp.c \
160 $(srcdir)/inferiors.c \
161 $(srcdir)/linux-aarch64-low.c \
162 $(srcdir)/linux-arm-low.c \
163 $(srcdir)/linux-bfin-low.c \
164 $(srcdir)/linux-cris-low.c \
165 $(srcdir)/linux-crisv32-low.c \
166 $(srcdir)/linux-ia64-low.c \
167 $(srcdir)/linux-low.c \
168 $(srcdir)/linux-m32r-low.c \
169 $(srcdir)/linux-m68k-low.c \
170 $(srcdir)/linux-mips-low.c \
171 $(srcdir)/linux-nios2-low.c \
172 $(srcdir)/linux-ppc-low.c \
173 $(srcdir)/linux-s390-low.c \
174 $(srcdir)/linux-sh-low.c \
175 $(srcdir)/linux-sparc-low.c \
176 $(srcdir)/linux-tile-low.c \
177 $(srcdir)/linux-x86-low.c \
178 $(srcdir)/linux-xtensa-low.c \
179 $(srcdir)/mem-break.c \
180 $(srcdir)/proc-service.c \
181 $(srcdir)/proc-service.list \
182 $(srcdir)/regcache.c \
183 $(srcdir)/remote-utils.c \
184 $(srcdir)/server.c \
185 $(srcdir)/symbol.c \
186 $(srcdir)/target.c \
187 $(srcdir)/thread-db.c \
188 $(srcdir)/utils.c \
189 $(srcdir)/win32-arm-low.c \
190 $(srcdir)/win32-i386-low.c \
191 $(srcdir)/win32-low.c \
192 $(srcdir)/wincecompat.c \
193 $(srcdir)/x86-low.c \
194 $(srcdir)/arch/arm.c \
195 $(srcdir)/arch/arm-get-next-pcs.c \
196 $(srcdir)/arch/arm-linux.c \
197 $(srcdir)/common/btrace-common.c \
198 $(srcdir)/common/buffer.c \
199 $(srcdir)/common/cleanups.c \
200 $(srcdir)/common/common-debug.c \
201 $(srcdir)/common/common-exceptions.c \
202 $(srcdir)/common/common-regcache.c \
203 $(srcdir)/common/common-utils.c \
204 $(srcdir)/common/errors.c \
205 $(srcdir)/common/environ.c \
206 $(srcdir)/common/fileio.c \
207 $(srcdir)/common/filestuff.c \
208 $(srcdir)/common/job-control.c \
209 $(srcdir)/common/gdb_tilde_expand.c \
210 $(srcdir)/common/gdb_vecs.c \
211 $(srcdir)/common/new-op.c \
212 $(srcdir)/common/pathstuff.c \
213 $(srcdir)/common/print-utils.c \
214 $(srcdir)/common/ptid.c \
215 $(srcdir)/common/rsp-low.c \
216 $(srcdir)/common/vec.c \
217 $(srcdir)/common/xml-utils.c \
218 $(srcdir)/nat/linux-btrace.c \
219 $(srcdir)/nat/linux-namespaces.c \
220 $(srcdir)/nat/linux-osdata.c \
221 $(srcdir)/nat/linux-personality.c \
222 $(srcdir)/nat/mips-linux-watch.c \
223 $(srcdir)/nat/ppc-linux.c \
224 $(srcdir)/nat/fork-inferior.c \
225 $(srcdir)/target/waitstatus.c
226
227 DEPFILES = @GDBSERVER_DEPFILES@
228
229 LIBOBJS = @LIBOBJS@
230
231 SOURCES = $(SFILES)
232 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
233
234 OBS = \
235 ax.o \
236 common/agent.o \
237 common/btrace-common.o \
238 common/buffer.o \
239 common/cleanups.o \
240 common/common-debug.o \
241 common/common-exceptions.o \
242 common/job-control.o \
243 common/common-regcache.o \
244 common/common-utils.o \
245 common/errors.o \
246 common/environ.o \
247 common/fileio.o \
248 common/filestuff.o \
249 common/format.o \
250 common/gdb_tilde_expand.o \
251 common/gdb_vecs.o \
252 common/new-op.o \
253 common/pathstuff.o \
254 common/print-utils.o \
255 common/ptid.o \
256 common/rsp-low.o \
257 common/signals.o \
258 common/signals-state-save-restore.o \
259 common/vec.o \
260 common/xml-utils.o \
261 debug.o \
262 dll.o \
263 event-loop.o \
264 hostio.o \
265 inferiors.o \
266 mem-break.o \
267 notif.o \
268 regcache.o \
269 remote-utils.o \
270 server.o \
271 symbol.o \
272 target.o \
273 tdesc.o \
274 tracepoint.o \
275 utils.o \
276 version.o \
277 waitstatus.o \
278 $(DEPFILES) \
279 $(LIBOBJS) \
280 $(XML_BUILTIN)
281
282 GDBREPLAY_OBS = gdbreplay.o version.o
283 GDBSERVER_LIBS = @GDBSERVER_LIBS@
284 XM_CLIBS = @LIBS@
285 CDEPS = $(srcdir)/proc-service.list
286
287 # XML files to compile in to gdbserver, if any.
288 XML_DIR = $(srcdir)/../features
289 XML_FILES = @srv_xmlfiles@
290 XML_BUILTIN = @srv_xmlbuiltin@
291
292 IPA_DEPFILES = @IPA_DEPFILES@
293 extra_libraries = @extra_libraries@
294
295 SUBDIRS = $(GNULIB_BUILDDIR) $(LIBIBERTY_BUILDDIR)
296 CLEANDIRS = $(SUBDIRS)
297
298 # List of subdirectories in the build tree that must exist.
299 # This is used to force build failures in existing trees when
300 # a new directory is added.
301 # The format here is for the `case' shell command.
302 REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR) | $(LIBIBERTY_BUILDDIR)
303
304 FLAGS_TO_PASS = \
305 "prefix=$(prefix)" \
306 "exec_prefix=$(exec_prefix)" \
307 "infodir=$(infodir)" \
308 "datarootdir=$(datarootdir)" \
309 "docdir=$(docdir)" \
310 "htmldir=$(htmldir)" \
311 "pdfdir=$(pdfdir)" \
312 "libdir=$(libdir)" \
313 "mandir=$(mandir)" \
314 "datadir=$(datadir)" \
315 "includedir=$(includedir)" \
316 "against=$(against)" \
317 "DESTDIR=$(DESTDIR)" \
318 "AR=$(AR)" \
319 "AR_FLAGS=$(AR_FLAGS)" \
320 "CC=$(CC)" \
321 "CFLAGS=$(CFLAGS)" \
322 "CXX=$(CXX)" \
323 "CXXFLAGS=$(CXXFLAGS)" \
324 "DLLTOOL=$(DLLTOOL)" \
325 "LDFLAGS=$(LDFLAGS)" \
326 "RANLIB=$(RANLIB)" \
327 "MAKEINFO=$(MAKEINFO)" \
328 "MAKEHTML=$(MAKEHTML)" \
329 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
330 "INSTALL=$(INSTALL)" \
331 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
332 "INSTALL_DATA=$(INSTALL_DATA)" \
333 "RUNTEST=$(RUNTEST)" \
334 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
335
336 # All generated files which can be included by another file.
337 generated_files = config.h $(GNULIB_H)
338
339 all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
340 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
341
342 # Traditionally "install" depends on "all". But it may be useful
343 # not to; for example, if the user has made some trivial change to a
344 # source file and doesn't care about rebuilding or just wants to save the
345 # time it takes for make to check that all is up to date.
346 # install-only is intended to address that need.
347 install: all
348 @$(MAKE) $(FLAGS_TO_PASS) install-only
349
350 install-only:
351 n=`echo gdbserver | sed '$(program_transform_name)'`; \
352 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
353 if [ x"$(IPA_DEPFILES)" != x ]; then \
354 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
355 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
356 fi; \
357 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
358 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
359 # Note that we run install and not install-only, as the latter
360 # is not part of GNU standards and in particular not provided
361 # in libiberty.
362 @$(MAKE) $(FLAGS_TO_PASS) DO=install "DODIRS=$(SUBDIRS)" subdir_do
363
364 uninstall: force
365 n=`echo gdbserver | sed '$(program_transform_name)'`; \
366 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
367 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
368 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
369
370 installcheck:
371 check:
372 info dvi pdf:
373 install-info:
374 install-pdf:
375 html:
376 install-html:
377 clean-info: force
378 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
379
380 gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU) $(LIBIBERTY)
381 rm -f gdbserver$(EXEEXT)
382 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
383 $(LIBGNU) $(LIBIBERTY) $(GDBSERVER_LIBS) $(XM_CLIBS)
384
385 $(LIBGNU) $(LIBIBERTY) $(GNULIB_H): all-lib
386 all-lib: $(GNULIB_BUILDDIR)/Makefile $(LIBIBERTY_BUILDDIR)/Makefile
387 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS="$(SUBDIRS)" subdir_do
388 .PHONY: all-lib
389
390 gdbreplay$(EXEEXT): $(GDBREPLAY_OBS) $(LIBGNU) $(LIBIBERTY)
391 rm -f gdbreplay$(EXEEXT)
392 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
393 $(XM_CLIBS) $(LIBGNU) $(LIBIBERTY)
394
395 IPA_OBJS = \
396 ax-ipa.o \
397 common/common-utils-ipa.o \
398 common/errors-ipa.o \
399 common/format-ipa.o \
400 common/print-utils-ipa.o \
401 common/rsp-low-ipa.o \
402 common/vec-ipa.o \
403 regcache-ipa.o \
404 remote-utils-ipa.o \
405 tdesc-ipa.o \
406 tracepoint-ipa.o \
407 utils-ipa.o \
408 ${IPA_DEPFILES}
409
410 IPA_LIB = libinproctrace.so
411
412 $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
413 rm -f $(IPA_LIB)
414 $(CC_LD) -shared -fPIC -Wl,--soname=$(IPA_LIB) -Wl,--no-undefined $(INTERNAL_CFLAGS) \
415 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
416
417 # Put the proper machine-specific files first, so M-. on a machine
418 # specific routine gets the one for the correct machine.
419 # The xyzzy stuff below deals with empty DEPFILES
420 TAGS: ${TAGFILES}
421 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
422 `find ${srcdir}/../config -name ${XM_FILE} -print` \
423 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
424 `for i in yzzy ${DEPFILES}; do \
425 if [ x$$i != xyzzy ]; then \
426 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
427 fi; \
428 done` \
429 ${TAGFILES}
430 tags: TAGS
431
432 clean:
433 rm -f *.o ${ADD_FILES} *~
434 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
435 rm -f $(IPA_LIB)
436 rm -f *-generated.c
437 rm -f stamp-xml
438 rm -f $(DEPDIR)/*.Po
439 for i in $(CONFIG_SRC_SUBDIR); do \
440 rm -f $$i/*.o; \
441 rm -f $$i/$(DEPDIR)/*; \
442 done
443 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
444
445 maintainer-clean realclean distclean: clean
446 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
447 rm -rf $(GNULIB_BUILDDIR)
448 rm -f Makefile config.status config.h stamp-h config.log
449 rm -f Makefile
450 for i in $(CONFIG_SRC_SUBDIR); do \
451 rmdir $$i/$(DEPDIR); \
452 done
453
454 subdir_do: force
455 @for i in $(DODIRS); do \
456 case $$i in \
457 $(REQUIRED_SUBDIRS)) \
458 if [ ! -f ./$$i/Makefile ] ; then \
459 echo "Missing $$i/Makefile" >&2 ; \
460 exit 1 ; \
461 fi ;; \
462 esac ; \
463 if [ -f ./$$i/Makefile ] ; then \
464 if (cd ./$$i; \
465 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
466 else exit 1 ; fi ; \
467 else true ; fi ; \
468 done
469
470 config.h: stamp-h ; @true
471 stamp-h: config.in config.status
472 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
473
474 Makefile: Makefile.in config.status
475 CONFIG_HEADERS="" $(SHELL) ./config.status
476
477 $(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
478 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
479 CONFIG_COMMANDS="depfiles" \
480 CONFIG_HEADERS= \
481 CONFIG_LINKS= \
482 $(SHELL) config.status
483
484 config.status: configure configure.srv $(srcdir)/../../bfd/development.sh
485 $(SHELL) ./config.status --recheck
486
487 # automatic rebuilding in automake-generated Makefiles requires
488 # this rule in the toplevel Makefile, which, with GNU make, causes
489 # the desired updates through the implicit regeneration of the Makefile
490 # and all of its prerequisites.
491 am--refresh:
492 @:
493
494 force:
495
496 version-generated.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
497 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
498 $(host_alias) $(target_alias) $@
499
500 xml-builtin-generated.c: stamp-xml; @true
501 stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
502 rm -f xml-builtin.tmp
503 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
504 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin-generated.c
505 echo stamp > stamp-xml
506
507 .PRECIOUS: xml-builtin.c
508
509 # GNU Make has an annoying habit of putting *all* the Makefile variables
510 # into the environment, unless you include this target as a circumvention.
511 # Rumor is that this will be fixed (and this target can be removed)
512 # in GNU Make 4.0.
513 .NOEXPORT:
514
515 # GNU Make 3.63 has a different problem: it keeps tacking command line
516 # overrides onto the definition of $(MAKE). This variable setting
517 # will remove them.
518 MAKEOVERRIDES =
519
520 regdat_sh = $(srcdir)/../regformats/regdat.sh
521
522 UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
523
524 # Note, we only build the IPA if -fvisibility=hidden is supported in
525 # the first place.
526 IPAGENT_CFLAGS = $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
527 -fPIC -DIN_PROCESS_AGENT \
528 -fvisibility=hidden
529
530 IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
531
532 # Rules for special cases.
533
534 ax-ipa.o: ax.c
535 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
536 $(POSTCOMPILE)
537
538 ax.o: ax.c
539 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
540 $(POSTCOMPILE)
541
542 # Rules for objects that go in the in-process agent.
543
544 arch/%-ipa.o: ../arch/%.c
545 $(IPAGENT_COMPILE) $<
546 $(POSTCOMPILE)
547
548 common/%-ipa.o: ../common/%.c
549 $(IPAGENT_COMPILE) $<
550 $(POSTCOMPILE)
551
552 %-ipa.o: %-generated.c
553 $(IPAGENT_COMPILE) $<
554 $(POSTCOMPILE)
555
556 %-ipa.o: %.c
557 $(IPAGENT_COMPILE) $<
558 $(POSTCOMPILE)
559
560 # Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one.
561 # Therefore, this one needs to be before "%.o: %.c" for it to be considered for
562 # files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c.
563 #
564 # Later versions of GNU Make choose the rule with the shortest stem, so it would
565 # work in any order.
566
567 %-ipa.o: %-ipa.c
568 $(IPAGENT_COMPILE) $<
569 $(POSTCOMPILE)
570
571 # Rules for objects that go in the gdbserver binary.
572
573 arch/%.o: ../arch/%.c
574 $(COMPILE) $<
575 $(POSTCOMPILE)
576
577 common/%.o: ../common/%.c
578 $(COMPILE) $<
579 $(POSTCOMPILE)
580
581 %.o: %-generated.c
582 $(COMPILE) $<
583 $(POSTCOMPILE)
584
585 %.o: %.c
586 $(COMPILE) $<
587 $(POSTCOMPILE)
588
589 %.o: ../nat/%.c
590 $(COMPILE) $<
591 $(POSTCOMPILE)
592
593 %.o: ../target/%.c
594 $(COMPILE) $<
595 $(POSTCOMPILE)
596
597 # Rules for register format descriptions. Suffix destination files with
598 # -generated to identify and clean them easily.
599
600 %-generated.c: ../regformats/%.dat | $(regdat_sh)
601 $(SHELL) $(regdat_sh) $< $@
602
603 %-generated.c: ../regformats/arm/%.dat | $(regdat_sh)
604 $(SHELL) $(regdat_sh) $< $@
605
606 %-generated.c: ../regformats/i386/%.dat | $(regdat_sh)
607 $(SHELL) $(regdat_sh) $< $@
608
609 %-generated.c: ../regformats/rs6000/%.dat | $(regdat_sh)
610 $(SHELL) $(regdat_sh) $< $@
611
612 #
613 # Dependency tracking.
614 #
615
616 ifeq ($(DEPMODE),depmode=gcc3)
617 # Note that we put the dependencies into a .Tpo file, then move them
618 # into place if the compile succeeds. We need this because gcc does
619 # not atomically write the dependency output file.
620 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
621 -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
622 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
623 $(@D)/$(DEPDIR)/$(basename $(@F)).Po
624 else
625 override COMPILE.pre = source='$<' object='$@' libtool=no \
626 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
627 $(CXX) -x c++ $(CXX_DIALECT)
628 # depcomp handles atomicity for us, so we don't need a postcompile
629 # step.
630 override POSTCOMPILE =
631 endif
632
633 # A list of all the objects we might care about in this build, for
634 # dependency tracking.
635 all_object_files = $(OBS) $(GDBREPLAY_OBS) $(IPA_OBJS)
636
637 # Ensure that generated files are created early. Use order-only
638 # dependencies if available. They require GNU make 3.80 or newer,
639 # and the .VARIABLES variable was introduced at the same time.
640 ifdef .VARIABLES
641 $(all_object_files): | $(generated_files)
642 else
643 $(all_object_files) : $(generated_files)
644 endif
645
646 # Dependencies.
647 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
648
649 # Disable implicit make rules.
650 include $(srcdir)/../disable-implicit-rules.mk
651
652 # Do not delete intermediate files (e.g. *-generated.c).
653 .SECONDARY:
654
655 # This is the end of "Makefile.in".
This page took 0.04454 seconds and 4 git commands to generate.