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