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