1 # Copyright (C) 1989-2019 Free Software Foundation, Inc.
3 # This file is part of GDB.
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.
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.
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/>.
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.
22 exec_prefix = @
exec_prefix@
24 host_alias
= @host_noncanonical@
25 target_alias
= @target_noncanonical@
26 program_transform_name
= @program_transform_name@
29 tooldir
= $(libdir)/$(target_alias
)
31 datarootdir
= @datarootdir@
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
44 htmldir
= $(prefix)/html
45 includedir = @
includedir@
46 CONFIG_SRC_SUBDIR
= @CONFIG_SRC_SUBDIR@
52 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
53 INSTALL_DATA
= @INSTALL_DATA@
58 CXX_DIALECT
= @CXX_DIALECT@
62 # Dependency tracking information.
65 depcomp
= $(SHELL
) $(srcdir)/..
/..
/depcomp
67 # Directory containing source files. Don't clean up the spacing,
68 # this exact string is matched for by the "configure" script.
70 abs_top_srcdir
= @abs_top_srcdir@
71 abs_srcdir
= @abs_srcdir@
74 include $(srcdir)/..
/silent-rules.mk
76 # Note that these are overridden by GNU make-specific code below if
77 # GNU make is used. The overrides implement dependency tracking.
78 COMPILE.pre
= $(CXX
) -x c
++ $(CXX_DIALECT
)
79 COMPILE.post
= -c
-o
$@
80 COMPILE
= $(ECHO_CXX
) $(COMPILE.pre
) $(INTERNAL_CFLAGS
) $(COMPILE.post
)
83 # It is also possible that you will need to add -I/usr/include/sys to the
84 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
85 # is where it should be according to Posix).
87 # Set this up with gcc if you have gnu ld and the loader will print out
88 # line numbers for undefinded refs.
90 CC_LD
= $(CXX
) $(CXX_DIALECT
)
92 # Where is the "include" directory? Traditionally ../include or ./include
93 INCLUDE_DIR
= ${srcdir}/..
/..
/include
94 INCLUDE_DEP
= $$(INCLUDE_DIR
)
96 LIBIBERTY_BUILDDIR
= build-libiberty-gdbserver
97 LIBIBERTY
= $(LIBIBERTY_BUILDDIR
)/libiberty.a
99 # Where is ust? These will be empty if ust was not available.
104 GNULIB_BUILDDIR
= build-gnulib-gdbserver
105 LIBGNU
= $(GNULIB_BUILDDIR
)/import
/libgnu.a
106 INCGNU
= -I
$(srcdir)/..
/gnulib
/import
-I
$(GNULIB_BUILDDIR
)/import
108 # Generated headers in the gnulib directory. These must be listed
109 # so that they are generated before other files are compiled.
110 GNULIB_H
= $(GNULIB_BUILDDIR
)/import
/string.h @GNULIB_STDINT_H@
112 # All the includes used for CFLAGS and for lint.
113 # -I. for config files.
114 # -I${srcdir} for our headers.
115 # -I$(srcdir)/../regformats for regdef.h.
117 # We do not include ../target or ../nat in here because headers
118 # in those directories should be included with the subdirectory.
119 # e.g.: "target/wait.h".
121 INCLUDE_CFLAGS
= -I.
-I
${srcdir} \
122 -I
$(srcdir)/..
/regformats
-I
$(srcdir)/..
-I
$(INCLUDE_DIR
) \
125 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
126 # from the config/ directory.
127 GLOBAL_CFLAGS
= ${MT_CFLAGS} ${MH_CFLAGS}
128 #PROFILE_CFLAGS = -pg
130 WARN_CFLAGS
= @WARN_CFLAGS@
131 WERROR_CFLAGS
= @WERROR_CFLAGS@
133 WARN_CFLAGS_NO_FORMAT
= `echo " $(WARN_CFLAGS) " \
134 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
136 # These are specifically reserved for setting from the command line
137 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
139 CXXFLAGS
= @CXXFLAGS@
140 CPPFLAGS
= @CPPFLAGS@
142 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
143 INTERNAL_CFLAGS_BASE
= ${CXXFLAGS} ${GLOBAL_CFLAGS} \
144 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${CPPFLAGS}
145 INTERNAL_WARN_CFLAGS
= ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS
)
146 INTERNAL_CFLAGS
= ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS
) -DGDBSERVER
148 # LDFLAGS is specifically reserved for setting from the command line
151 INTERNAL_LDFLAGS
= $(LDFLAGS
) @RDYNAMIC@
153 # All source files that go into linking GDB remote server.
158 $(srcdir)/gdbreplay.c \
160 $(srcdir)/hostio-errno.c \
161 $(srcdir)/i387-fp.c \
162 $(srcdir)/inferiors.c \
163 $(srcdir)/linux-aarch64-low.c \
164 $(srcdir)/linux-arm-low.c \
165 $(srcdir)/linux-bfin-low.c \
166 $(srcdir)/linux-cris-low.c \
167 $(srcdir)/linux-crisv32-low.c \
168 $(srcdir)/linux-ia64-low.c \
169 $(srcdir)/linux-low.c \
170 $(srcdir)/linux-m32r-low.c \
171 $(srcdir)/linux-m68k-low.c \
172 $(srcdir)/linux-mips-low.c \
173 $(srcdir)/linux-nios2-low.c \
174 $(srcdir)/linux-ppc-low.c \
175 $(srcdir)/linux-s390-low.c \
176 $(srcdir)/linux-sh-low.c \
177 $(srcdir)/linux-sparc-low.c \
178 $(srcdir)/linux-tile-low.c \
179 $(srcdir)/linux-x86-low.c \
180 $(srcdir)/linux-xtensa-low.c \
181 $(srcdir)/mem-break.c \
182 $(srcdir)/proc-service.c \
183 $(srcdir)/proc-service.list \
184 $(srcdir)/regcache.c \
185 $(srcdir)/remote-utils.c \
189 $(srcdir)/thread-db.c \
191 $(srcdir)/win32-arm-low.c \
192 $(srcdir)/win32-i386-low.c \
193 $(srcdir)/win32-low.c \
194 $(srcdir)/wincecompat.c \
195 $(srcdir)/x86-low.c \
196 $(srcdir)/arch
/arm.c \
197 $(srcdir)/arch
/arm-get-next-pcs.c \
198 $(srcdir)/arch
/arm-linux.c \
199 $(srcdir)/arch
/ppc-linux-common.c \
200 $(srcdir)/common
/btrace-common.c \
201 $(srcdir)/common
/buffer.c \
202 $(srcdir)/common
/cleanups.c \
203 $(srcdir)/common
/common-debug.c \
204 $(srcdir)/common
/common-exceptions.c \
205 $(srcdir)/common
/common-regcache.c \
206 $(srcdir)/common
/common-utils.c \
207 $(srcdir)/common
/errors.c \
208 $(srcdir)/common
/environ.c \
209 $(srcdir)/common
/fileio.c \
210 $(srcdir)/common
/filestuff.c \
211 $(srcdir)/common
/job-control.c \
212 $(srcdir)/common
/gdb_tilde_expand.c \
213 $(srcdir)/common
/gdb_vecs.c \
214 $(srcdir)/common
/netstuff.c \
215 $(srcdir)/common
/new-op.c \
216 $(srcdir)/common
/pathstuff.c \
217 $(srcdir)/common
/print-utils.c \
218 $(srcdir)/common
/ptid.c \
219 $(srcdir)/common
/rsp-low.c \
220 $(srcdir)/common
/tdesc.c \
221 $(srcdir)/common
/vec.c \
222 $(srcdir)/common
/xml-utils.c \
223 $(srcdir)/nat
/aarch64-sve-linux-ptrace.c \
224 $(srcdir)/nat
/linux-btrace.c \
225 $(srcdir)/nat
/linux-namespaces.c \
226 $(srcdir)/nat
/linux-osdata.c \
227 $(srcdir)/nat
/linux-personality.c \
228 $(srcdir)/nat
/mips-linux-watch.c \
229 $(srcdir)/nat
/ppc-linux.c \
230 $(srcdir)/nat
/fork-inferior.c \
231 $(srcdir)/target
/waitstatus.c
233 DEPFILES
= @GDBSERVER_DEPFILES@
238 TAGFILES
= $(SOURCES
) ${HFILES} ${ALLPARAM} ${POSSLIBS}
243 common
/btrace-common.o \
246 common
/common-debug.o \
247 common
/common-exceptions.o \
248 common
/job-control.o \
249 common
/common-regcache.o \
250 common
/common-utils.o \
256 common
/gdb_tilde_expand.o \
261 common
/print-utils.o \
265 common
/signals-state-save-restore.o \
292 common
/common-exceptions.o \
293 common
/common-utils.o \
296 common
/print-utils.o \
301 GDBSERVER_LIBS
= @GDBSERVER_LIBS@
303 CDEPS
= $(srcdir)/proc-service.list
305 # XML files to compile in to gdbserver, if any.
306 XML_DIR
= $(srcdir)/..
/features
307 XML_FILES
= @srv_xmlfiles@
308 XML_BUILTIN
= @srv_xmlbuiltin@
310 IPA_DEPFILES
= @IPA_DEPFILES@
311 extra_libraries
= @extra_libraries@
313 SUBDIRS
= $(GNULIB_BUILDDIR
) $(LIBIBERTY_BUILDDIR
)
314 CLEANDIRS
= $(SUBDIRS
)
316 # List of subdirectories in the build tree that must exist.
317 # This is used to force build failures in existing trees when
318 # a new directory is added.
319 # The format here is for the `case' shell command.
320 REQUIRED_SUBDIRS
= $(GNULIB_BUILDDIR
) |
$(LIBIBERTY_BUILDDIR
)
324 "exec_prefix=$(exec_prefix)" \
325 "infodir=$(infodir)" \
326 "datarootdir=$(datarootdir)" \
328 "htmldir=$(htmldir)" \
332 "datadir=$(datadir)" \
333 "includedir=$(includedir)" \
334 "against=$(against)" \
335 "DESTDIR=$(DESTDIR)" \
337 "AR_FLAGS=$(AR_FLAGS)" \
341 "CXXFLAGS=$(CXXFLAGS)" \
342 "DLLTOOL=$(DLLTOOL)" \
343 "LDFLAGS=$(LDFLAGS)" \
345 "MAKEINFO=$(MAKEINFO)" \
346 "MAKEHTML=$(MAKEHTML)" \
347 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
348 "INSTALL=$(INSTALL)" \
349 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
350 "INSTALL_DATA=$(INSTALL_DATA)" \
351 "RUNTEST=$(RUNTEST)" \
352 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
354 # All generated files which can be included by another file.
355 generated_files
= config.h
$(GNULIB_H
)
357 all: gdbserver
$(EXEEXT
) gdbreplay
$(EXEEXT
) $(extra_libraries
)
358 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=$@
"DODIRS=$(SUBDIRS)" subdir_do
360 # Traditionally "install" depends on "all". But it may be useful
361 # not to; for example, if the user has made some trivial change to a
362 # source file and doesn't care about rebuilding or just wants to save the
363 # time it takes for make to check that all is up to date.
364 # install-only is intended to address that need.
366 @
$(MAKE
) $(FLAGS_TO_PASS
) install-only
369 n
=`echo gdbserver | sed '$(program_transform_name)'`; \
370 if
[ x
$$n = x
]; then n
=gdbserver
; else true
; fi
; \
371 if
[ x
"$(IPA_DEPFILES)" != x
]; then \
372 $(SHELL
) $(srcdir)/..
/..
/mkinstalldirs
$(DESTDIR
)$(libdir); \
373 $(INSTALL_PROGRAM
) $(IPA_LIB
) $(DESTDIR
)$(libdir)/$(IPA_LIB
); \
375 $(SHELL
) $(srcdir)/..
/..
/mkinstalldirs
$(DESTDIR
)$(bindir); \
376 $(INSTALL_PROGRAM
) gdbserver
$(EXEEXT
) $(DESTDIR
)$(bindir)/$$n$(EXEEXT
)
377 # Note that we run install and not install-only, as the latter
378 # is not part of GNU standards and in particular not provided
380 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=install "DODIRS=$(SUBDIRS)" subdir_do
383 n
=`echo gdbserver | sed '$(program_transform_name)'`; \
384 if
[ x
$$n = x
]; then n
=gdbserver
; else true
; fi
; \
385 rm -f
$(DESTDIR
)/$(bindir)/$$n$(EXEEXT
) $(DESTDIR
)$(man1dir)/$$n.1
386 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=$@
"DODIRS=$(SUBDIRS)" subdir_do
396 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=$@
"DODIRS=$(SUBDIRS)" subdir_do
398 gdbserver
$(EXEEXT
): $(sort $(OBS
)) ${CDEPS} $(LIBGNU
) $(LIBIBERTY
)
399 $(SILENCE
) rm -f gdbserver
$(EXEEXT
)
400 $(ECHO_CXXLD
) $(CC_LD
) $(INTERNAL_CFLAGS
) $(INTERNAL_LDFLAGS
) \
401 -o gdbserver
$(EXEEXT
) $(OBS
) $(LIBGNU
) $(LIBIBERTY
) \
402 $(GDBSERVER_LIBS
) $(XM_CLIBS
)
404 $(LIBGNU
) $(LIBIBERTY
) $(GNULIB_H
): all-lib
405 all-lib
: $(GNULIB_BUILDDIR
)/Makefile
$(LIBIBERTY_BUILDDIR
)/Makefile
406 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=all DODIRS
="$(SUBDIRS)" subdir_do
409 gdbreplay
$(EXEEXT
): $(sort $(GDBREPLAY_OBS
)) $(LIBGNU
) $(LIBIBERTY
)
410 $(SILENCE
) rm -f gdbreplay
$(EXEEXT
)
411 $(ECHO_CXXLD
) $(CC_LD
) $(INTERNAL_CFLAGS
) $(INTERNAL_LDFLAGS
) \
412 -o gdbreplay
$(EXEEXT
) $(GDBREPLAY_OBS
) $(XM_CLIBS
) $(LIBGNU
) \
417 common
/common-utils-ipa.o \
418 common
/errors-ipa.o \
419 common
/format-ipa.o \
420 common
/print-utils-ipa.o \
421 common
/rsp-low-ipa.o \
431 IPA_LIB
= libinproctrace.so
433 $(IPA_LIB
): $(sort $(IPA_OBJS
)) ${CDEPS}
434 $(SILENCE
) rm -f
$(IPA_LIB
)
435 $(ECHO_CXXLD
) $(CC_LD
) -shared
-fPIC
-Wl
,--soname
=$(IPA_LIB
) \
436 -Wl
,--no-undefined
$(INTERNAL_CFLAGS
) $(INTERNAL_LDFLAGS
) \
437 -o
$(IPA_LIB
) ${IPA_OBJS} -ldl
-pthread
439 # Put the proper machine-specific files first, so M-. on a machine
440 # specific routine gets the one for the correct machine.
441 # The xyzzy stuff below deals with empty DEPFILES
443 etags
`find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
444 `find ${srcdir}/../config -name ${XM_FILE} -print` \
445 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
446 `for i in yzzy ${DEPFILES}; do \
447 if [ x$$i != xyzzy ]; then \
448 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
455 rm -f
*.o
${ADD_FILES} *~
456 rm -f gdbserver
$(EXEEXT
) gdbreplay
$(EXEEXT
) core make.log
461 for i in
$(CONFIG_SRC_SUBDIR
); do \
463 rm -f
$$i/$(DEPDIR
)/*; \
465 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=$@
"DODIRS=$(SUBDIRS)" subdir_do
467 maintainer-clean
realclean distclean: clean
468 @
$(MAKE
) $(FLAGS_TO_PASS
) DO
=$@
"DODIRS=$(SUBDIRS)" subdir_do
469 rm -rf
$(GNULIB_BUILDDIR
)
470 rm -f Makefile config.status config.h stamp-h config.log
472 for i in
$(CONFIG_SRC_SUBDIR
); do \
473 rmdir
$$i/$(DEPDIR
); \
477 @for i in
$(DODIRS
); do \
479 $(REQUIRED_SUBDIRS
)) \
480 if
[ ! -f .
/$$i/Makefile
] ; then \
481 echo
"Missing $$i/Makefile" >&2 ; \
485 if
[ -f .
/$$i/Makefile
] ; then \
487 $(MAKE
) $(FLAGS_TO_PASS
) $(DO
)) ; then true
; \
492 config.h
: stamp-h
; @true
493 stamp-h
: config.in config.status
494 CONFIG_FILES
="" CONFIG_HEADERS
=config.h
:config.in
$(SHELL
) .
/config.status
496 Makefile
: Makefile.in config.status
497 CONFIG_HEADERS
="" $(SHELL
) .
/config.status
499 $(GNULIB_BUILDDIR
)/Makefile
: $(srcdir)/..
/gnulib
/Makefile.in config.status
500 @cd
$(GNULIB_BUILDDIR
); CONFIG_FILES
="Makefile" \
501 CONFIG_COMMANDS
="depfiles" \
504 $(SHELL
) config.status
506 config.status
: configure configure.srv
$(srcdir)/..
/..
/bfd
/development.sh
507 $(SHELL
) .
/config.status
--recheck
509 # automatic rebuilding in automake-generated Makefiles requires
510 # this rule in the toplevel Makefile, which, with GNU make, causes
511 # the desired updates through the implicit regeneration of the Makefile
512 # and all of its prerequisites.
518 version-generated.c
: Makefile
$(srcdir)/..
/version.in
$(srcdir)/..
/..
/bfd
/version.h
$(srcdir)/..
/common
/create-version.sh
519 $(ECHO_GEN
) $(SHELL
) $(srcdir)/..
/common
/create-version.sh
$(srcdir)/.. \
520 $(host_alias
) $(target_alias
) $@
522 xml-builtin-generated.c
: stamp-xml
; @true
523 stamp-xml
: $(XML_DIR
)/feature_to_c.sh Makefile
$(XML_FILES
)
524 $(SILENCE
) rm -f xml-builtin.tmp
525 $(ECHO_GEN_XML_BUILTIN_GENERATED
) $(SHELL
) $(XML_DIR
)/feature_to_c.sh \
526 xml-builtin.tmp
$(XML_FILES
)
527 $(SILENCE
) $(SHELL
) $(srcdir)/..
/..
/move-if-change xml-builtin.tmp xml-builtin-generated.c
528 $(SILENCE
) echo stamp
> stamp-xml
530 .PRECIOUS
: xml-builtin.c
532 # GNU Make has an annoying habit of putting *all* the Makefile variables
533 # into the environment, unless you include this target as a circumvention.
534 # Rumor is that this will be fixed (and this target can be removed)
538 # GNU Make 3.63 has a different problem: it keeps tacking command line
539 # overrides onto the definition of $(MAKE). This variable setting
543 regdat_sh
= $(srcdir)/..
/regformats
/regdat.sh
545 UST_CFLAGS
= $(ustinc
) -DCONFIG_UST_GDB_INTEGRATION
547 # Undo gnulib replacements for the IPA shared library build.
548 # The gnulib headers are still needed, but gnulib is not linked
549 # into the IPA lib so replacement apis don't work.
550 UNDO_GNULIB_CFLAGS
= -Drpl_strerror
=strerror
552 # Note, we only build the IPA if -fvisibility=hidden is supported in
554 IPAGENT_CFLAGS
= $(INTERNAL_CFLAGS
) $(UST_CFLAGS
) \
555 $(UNDO_GNULIB_CFLAGS
) \
556 -fPIC
-DIN_PROCESS_AGENT \
559 IPAGENT_COMPILE
= $(ECHO_CXX
) $(COMPILE.pre
) $(IPAGENT_CFLAGS
) $(COMPILE.post
)
561 # Rules for special cases.
564 $(IPAGENT_COMPILE
) $(WARN_CFLAGS_NO_FORMAT
) $<
568 $(COMPILE
) $(WARN_CFLAGS_NO_FORMAT
) $<
571 # Rules for objects that go in the in-process agent.
573 arch
/%-ipa.o
: ..
/arch
/%.c
574 $(IPAGENT_COMPILE
) $<
577 common
/%-ipa.o
: ..
/common
/%.c
578 $(IPAGENT_COMPILE
) $<
581 %-ipa.o
: %-generated.c
582 $(IPAGENT_COMPILE
) $<
586 $(IPAGENT_COMPILE
) $<
589 # Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one.
590 # Therefore, this one needs to be before "%.o: %.c" for it to be considered for
591 # files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c.
593 # Later versions of GNU Make choose the rule with the shortest stem, so it would
597 $(IPAGENT_COMPILE
) $<
600 # Rules for objects that go in the gdbserver binary.
602 arch
/%.o
: ..
/arch
/%.c
606 common
/%.o
: ..
/common
/%.c
626 # Rules for register format descriptions. Suffix destination files with
627 # -generated to identify and clean them easily.
629 %-generated.c
: ..
/regformats
/%.dat |
$(regdat_sh
)
630 $(ECHO_REGDAT
) $(SHELL
) $(regdat_sh
) $< $@
632 %-generated.c
: ..
/regformats
/arm
/%.dat |
$(regdat_sh
)
633 $(ECHO_REGDAT
) $(SHELL
) $(regdat_sh
) $< $@
635 %-generated.c
: ..
/regformats
/i386
/%.dat |
$(regdat_sh
)
636 $(ECHO_REGDAT
) $(SHELL
) $(regdat_sh
) $< $@
638 %-generated.c
: ..
/regformats
/rs6000
/%.dat |
$(regdat_sh
)
639 $(ECHO_REGDAT
) $(SHELL
) $(regdat_sh
) $< $@
642 # Dependency tracking.
645 ifeq ($(DEPMODE
),depmode
=gcc3
)
646 # Note that we put the dependencies into a .Tpo file, then move them
647 # into place if the compile succeeds. We need this because gcc does
648 # not atomically write the dependency output file.
649 override COMPILE.post
= -c
-o
$@
-MT
$@
-MMD
-MP \
650 -MF
$(@D
)/$(DEPDIR
)/$(basename $(@F
)).Tpo
651 override POSTCOMPILE
= @mv
$(@D
)/$(DEPDIR
)/$(basename $(@F
)).Tpo \
652 $(@D
)/$(DEPDIR
)/$(basename $(@F
)).Po
654 override COMPILE.pre
= source
='$<' object
='$@' libtool
=no \
655 DEPDIR
=$(DEPDIR
) $(DEPMODE
) $(depcomp
) \
656 $(CXX
) -x c
++ $(CXX_DIALECT
)
657 # depcomp handles atomicity for us, so we don't need a postcompile
659 override POSTCOMPILE
=
662 # A list of all the objects we might care about in this build, for
663 # dependency tracking.
664 all_object_files
= $(OBS
) $(GDBREPLAY_OBS
) $(IPA_OBJS
)
666 # Ensure that generated files are created early. Use order-only
667 # dependencies if available. They require GNU make 3.80 or newer,
668 # and the .VARIABLES variable was introduced at the same time.
670 $(all_object_files
): |
$(generated_files
)
672 $(all_object_files
) : $(generated_files
)
675 # All the .deps files to include.
676 all_deps_files
= $(foreach dep
,$(patsubst %.o
,%.Po
,$(all_object_files
)),\
677 $(dir $(dep
))/$(DEPDIR
)/$(notdir $(dep
)))
680 -include $(all_deps_files
)
682 # Disable implicit make rules.
683 include $(srcdir)/..
/disable-implicit-rules.mk
685 # Do not delete intermediate files (e.g. *-generated.c).
688 # This is the end of "Makefile.in".