New gdbserver option --debug-format=timestamp.
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
CommitLineData
ecd75fc8 1# Copyright (C) 1989-2014 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
d6e9fb05
JK
18prefix = @prefix@
19exec_prefix = @exec_prefix@
c906108c 20
bd885420
YQ
21host_alias = @host_noncanonical@
22target_alias = @target_noncanonical@
d6e9fb05
JK
23program_transform_name = @program_transform_name@
24bindir = @bindir@
25libdir = @libdir@
c906108c
SS
26tooldir = $(libdir)/$(target_alias)
27
96e946ca 28datarootdir = @datarootdir@
d6e9fb05
JK
29datadir = @datadir@
30mandir = @mandir@
c906108c
SS
31man1dir = $(mandir)/man1
32man2dir = $(mandir)/man2
33man3dir = $(mandir)/man3
34man4dir = $(mandir)/man4
35man5dir = $(mandir)/man5
36man6dir = $(mandir)/man6
37man7dir = $(mandir)/man7
38man8dir = $(mandir)/man8
39man9dir = $(mandir)/man9
d6e9fb05 40infodir = @infodir@
085dd6e6 41htmldir = $(prefix)/html
d6e9fb05 42includedir = @includedir@
c906108c 43
a8347a2a 44SHELL = @SHELL@
de7c3b4a 45EXEEXT = @EXEEXT@
c906108c 46
d6e9fb05
JK
47INSTALL = @INSTALL@
48INSTALL_PROGRAM = @INSTALL_PROGRAM@
49INSTALL_DATA = @INSTALL_DATA@
c9a1864a 50RANLIB = @RANLIB@
c906108c 51
84563040 52CC = @CC@
c906108c 53
61c125b9
TT
54# Dependency tracking information.
55DEPMODE = @CCDEPMODE@
56DEPDIR = @DEPDIR@
57depcomp = $(SHELL) $(srcdir)/../depcomp
58
59# Note that these are overridden by GNU make-specific code below if
60# GNU make is used. The overrides implement dependency tracking.
61COMPILE.pre = $(CC)
62COMPILE.post = -c -o $@
63COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
64POSTCOMPILE = @true
65
c906108c
SS
66# Directory containing source files. Don't clean up the spacing,
67# this exact string is matched for by the "configure" script.
d6e9fb05 68srcdir = @srcdir@
c9a1864a
YQ
69abs_top_srcdir=@abs_top_srcdir@
70abs_srcdir=@abs_srcdir@
d6e9fb05 71VPATH = @srcdir@
c906108c
SS
72
73# It is also possible that you will need to add -I/usr/include/sys to the
1b3f6016 74# CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
c906108c
SS
75# is where it should be according to Posix).
76
77# Set this up with gcc if you have gnu ld and the loader will print out
78# line numbers for undefinded refs.
79#CC-LD=gcc -static
80CC-LD=${CC}
81
82# Where is the "include" directory? Traditionally ../include or ./include
83INCLUDE_DIR = ${srcdir}/../../include
84INCLUDE_DEP = $$(INCLUDE_DIR)
85
0fb4aa4b
PA
86# Where is ust? These will be empty if ust was not available.
87ustlibs = @ustlibs@
88ustinc = @ustinc@
89
c9a1864a 90# gnulib
c971b7fa
PA
91GNULIB_BUILDDIR = build-gnulib-gdbserver
92LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
93INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
ecedbe58 94
c9a1864a
YQ
95# Generated headers in the gnulib directory. These must be listed
96# so that they are generated before other files are compiled.
c971b7fa 97GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
c9a1864a 98
c906108c
SS
99# All the includes used for CFLAGS and for lint.
100# -I. for config files.
7ea81414
DJ
101# -I${srcdir} for our headers.
102# -I$(srcdir)/../regformats for regdef.h.
96d7229d
LM
103#
104# We do not include ../target or ../nat in here because headers
105# in those directories should be included with the subdirectory.
106# e.g.: "target/wait.h".
107#
2aecd87f 108INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
66af0f44 109 -I$(srcdir)/../regformats -I$(srcdir)/.. -I$(INCLUDE_DIR) \
57c4b50b 110 $(INCGNU)
c906108c
SS
111
112# M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
113# from the config/ directory.
114GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
115#PROFILE_CFLAGS = -pg
116
d4596a3d
PA
117WARN_CFLAGS = @WARN_CFLAGS@
118WERROR_CFLAGS = @WERROR_CFLAGS@
0729219d 119
d3ce09f5
SS
120WARN_CFLAGS_NO_FORMAT = `echo " $(WARN_CFLAGS) " \
121 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
122
c906108c
SS
123# CFLAGS is specifically reserved for setting from the command line
124# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
84563040
DJ
125CFLAGS = @CFLAGS@
126
c906108c 127# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
eff1410f 128INTERNAL_CFLAGS_BASE = ${CFLAGS} ${GLOBAL_CFLAGS} \
66b6e1dd 129 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS}
eff1410f 130INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
7d4e5717 131INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER
c906108c
SS
132
133# LDFLAGS is specifically reserved for setting from the command line
134# when running make.
697f7479 135LDFLAGS = @LDFLAGS@
f6de3c42 136INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
c906108c 137
c906108c
SS
138# All source files that go into linking GDB remote server.
139
bf4c19f7 140SFILES= $(srcdir)/gdbreplay.c $(srcdir)/inferiors.c $(srcdir)/dll.c \
f6528abd
JK
141 $(srcdir)/mem-break.c $(srcdir)/proc-service.c \
142 $(srcdir)/proc-service.list $(srcdir)/regcache.c \
73d37363 143 $(srcdir)/remote-utils.c $(srcdir)/server.c $(srcdir)/target.c \
87ce2a04 144 $(srcdir)/thread-db.c $(srcdir)/utils.c $(srcdir)/debug.c \
eb826dc6
MF
145 $(srcdir)/linux-arm-low.c $(srcdir)/linux-bfin-low.c \
146 $(srcdir)/linux-cris-low.c $(srcdir)/linux-crisv32-low.c \
aa5ca48f 147 ${srcdir}/i386-low.c $(srcdir)/i387-fp.c \
73d37363 148 $(srcdir)/linux-ia64-low.c $(srcdir)/linux-low.c \
7cfbc4a0 149 $(srcdir)/linux-m32r-low.c \
73d37363 150 $(srcdir)/linux-m68k-low.c $(srcdir)/linux-mips-low.c \
68f5f838 151 $(srcdir)/linux-nios2-low.c \
5b0a002e 152 $(srcdir)/linux-ppc-low.c \
eee84df1 153 $(srcdir)/linux-s390-low.c \
dfb64f85 154 $(srcdir)/linux-sh-low.c $(srcdir)/linux-sparc-low.c \
d0722149 155 $(srcdir)/linux-x86-low.c \
1525d545 156 $(srcdir)/linux-xtensa-low.c \
65f479b6 157 $(srcdir)/linux-tile-low.c \
68070c10 158 $(srcdir)/win32-arm-low.c $(srcdir)/win32-i386-low.c \
59a016f0 159 $(srcdir)/win32-low.c $(srcdir)/wincecompat.c \
d26e3629 160 $(srcdir)/hostio.c $(srcdir)/hostio-errno.c \
e6712ff1 161 $(srcdir)/common/vec.c $(srcdir)/common/gdb_vecs.c \
d26e3629
KY
162 $(srcdir)/common/common-utils.c $(srcdir)/common/xml-utils.c \
163 $(srcdir)/common/linux-osdata.c $(srcdir)/common/ptid.c \
614c279d 164 $(srcdir)/common/buffer.c $(srcdir)/common/linux-btrace.c \
33b60d58 165 $(srcdir)/common/filestuff.c $(srcdir)/target/waitstatus.c \
7a60ad40 166 $(srcdir)/common/mips-linux-watch.c
c906108c 167
7ea81414 168DEPFILES = @GDBSERVER_DEPFILES@
c906108c 169
e28b3332
DJ
170LIBOBJS = @LIBOBJS@
171
7ea81414 172SOURCES = $(SFILES)
1b3f6016 173TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
c906108c 174
3360c0bf 175OBS = agent.o ax.o inferiors.o regcache.o remote-utils.o server.o signals.o \
87ce2a04 176 target.o waitstatus.o utils.o debug.o version.o vec.o gdb_vecs.o \
3360c0bf
LM
177 mem-break.o hostio.o event-loop.o tracepoint.o xml-utils.o \
178 common-utils.o ptid.o buffer.o format.o filestuff.o dll.o notif.o \
179 tdesc.o $(XML_BUILTIN) $(DEPFILES) $(LIBOBJS)
a417dc56 180GDBREPLAY_OBS = gdbreplay.o version.o
0d62e5e8 181GDBSERVER_LIBS = @GDBSERVER_LIBS@
b80864fb 182XM_CLIBS = @LIBS@
f6528abd 183CDEPS = $(srcdir)/proc-service.list
c906108c 184
fb1e4ffc
DJ
185# XML files to compile in to gdbserver, if any.
186XML_DIR = $(srcdir)/../features
fb1e4ffc
DJ
187XML_FILES = @srv_xmlfiles@
188XML_BUILTIN = @srv_xmlbuiltin@
189
fa593d66
PA
190IPA_DEPFILES = @IPA_DEPFILES@
191extra_libraries = @extra_libraries@
192
c971b7fa
PA
193SUBDIRS = $(GNULIB_BUILDDIR)
194CLEANDIRS = $(SUBDIRS)
195
196# List of subdirectories in the build tree that must exist.
197# This is used to force build failures in existing trees when
198# a new directory is added.
199# The format here is for the `case' shell command.
200REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR)
201
f474844c
JZ
202FLAGS_TO_PASS = \
203 "prefix=$(prefix)" \
204 "exec_prefix=$(exec_prefix)" \
205 "infodir=$(infodir)" \
206 "datarootdir=$(datarootdir)" \
207 "docdir=$(docdir)" \
208 "htmldir=$(htmldir)" \
209 "pdfdir=$(pdfdir)" \
210 "libdir=$(libdir)" \
211 "mandir=$(mandir)" \
212 "datadir=$(datadir)" \
213 "includedir=$(includedir)" \
214 "against=$(against)" \
215 "DESTDIR=$(DESTDIR)" \
216 "AR=$(AR)" \
217 "AR_FLAGS=$(AR_FLAGS)" \
218 "CC=$(CC)" \
219 "CFLAGS=$(CFLAGS)" \
220 "CXX=$(CXX)" \
221 "CXXFLAGS=$(CXXFLAGS)" \
222 "DLLTOOL=$(DLLTOOL)" \
223 "LDFLAGS=$(LDFLAGS)" \
224 "RANLIB=$(RANLIB)" \
225 "MAKEINFO=$(MAKEINFO)" \
226 "MAKEHTML=$(MAKEHTML)" \
227 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
228 "INSTALL=$(INSTALL)" \
229 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
230 "INSTALL_DATA=$(INSTALL_DATA)" \
231 "RUNTEST=$(RUNTEST)" \
232 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
233
fd9bb8b8
PA
234# All generated files which can be included by another file.
235generated_files = config.h $(GNULIB_H)
236
c906108c 237.c.o:
61c125b9
TT
238 $(COMPILE) $<
239 $(POSTCOMPILE)
c906108c 240
fa593d66 241all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
c971b7fa 242 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
243
244# Traditionally "install" depends on "all". But it may be useful
1b3f6016 245# not to; for example, if the user has made some trivial change to a
c906108c
SS
246# source file and doesn't care about rebuilding or just wants to save the
247# time it takes for make to check that all is up to date.
248# install-only is intended to address that need.
f474844c
JZ
249install: all
250 @$(MAKE) $(FLAGS_TO_PASS) install-only
251
1b3f6016 252install-only:
c906108c
SS
253 n=`echo gdbserver | sed '$(program_transform_name)'`; \
254 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
12ac6819 255 if [ x"$(IPA_DEPFILES)" != x ]; then \
fa593d66
PA
256 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
257 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
258 fi; \
c938e9b0 259 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
480b27bf 260 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
c971b7fa 261 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
262
263uninstall: force
264 n=`echo gdbserver | sed '$(program_transform_name)'`; \
265 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
f1048712 266 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
c971b7fa 267 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
268
269installcheck:
270check:
9453113a 271info dvi pdf:
c906108c 272install-info:
9453113a 273install-pdf:
085dd6e6
JM
274html:
275install-html:
c9a1864a 276clean-info: force
c971b7fa 277 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c 278
57c4b50b 279gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU)
68070c10
PA
280 rm -f gdbserver$(EXEEXT)
281 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
57c4b50b 282 $(LIBGNU) $(GDBSERVER_LIBS) $(XM_CLIBS)
c9a1864a 283
57c4b50b 284$(LIBGNU) $(GNULIB_H): all-lib
c971b7fa
PA
285all-lib: $(GNULIB_BUILDDIR)/Makefile
286 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
c9a1864a 287.PHONY: all-lib
c906108c 288
0a5dd17d 289gdbreplay$(EXEEXT): $(GDBREPLAY_OBS) $(LIBGNU)
68070c10 290 rm -f gdbreplay$(EXEEXT)
a417dc56 291 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
0a5dd17d 292 $(XM_CLIBS) $(LIBGNU)
c906108c 293
3aee8918 294IPA_OBJS=ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o tdesc-ipa.o ${IPA_DEPFILES}
fa593d66
PA
295
296IPA_LIB=libinproctrace.so
297
298$(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
299 rm -f $(IPA_LIB)
300 ${CC-LD} -shared -fPIC -Wl,--no-undefined $(INTERNAL_CFLAGS) \
0fb4aa4b 301 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
fa593d66 302
c906108c
SS
303# Put the proper machine-specific files first, so M-. on a machine
304# specific routine gets the one for the correct machine.
305# The xyzzy stuff below deals with empty DEPFILES
306TAGS: ${TAGFILES}
2c0fc042 307 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
c906108c
SS
308 `find ${srcdir}/../config -name ${XM_FILE} -print` \
309 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
310 `for i in yzzy ${DEPFILES}; do \
311 if [ x$$i != xyzzy ]; then \
312 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
313 fi; \
314 done` \
315 ${TAGFILES}
316tags: TAGS
317
318clean:
319 rm -f *.o ${ADD_FILES} *~
dd24457d 320 rm -f version.c
de7c3b4a 321 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
fa593d66 322 rm -f $(IPA_LIB)
9b25f2d3 323 rm -f aarch64.c
eb826dc6 324 rm -f reg-arm.c reg-bfin.c i386.c reg-ia64.c reg-m32r.c reg-m68k.c
90884b2b
L
325 rm -f reg-sh.c reg-sparc.c reg-spu.c amd64.c i386-linux.c
326 rm -f reg-cris.c reg-crisv32.c amd64-linux.c reg-xtensa.c
e1f58301 327 rm -f reg-tilegx.c reg-tilegx32.c
58d6951d
DJ
328 rm -f arm-with-iwmmxt.c
329 rm -f arm-with-vfpv2.c arm-with-vfpv3.c arm-with-neon.c
330 rm -f mips-linux.c mips64-linux.c
68f5f838 331 rm -f nios2-linux.c
0482b03b 332 rm -f powerpc-32.c powerpc-32l.c powerpc-64l.c powerpc-e500l.c
f4d9bade
UW
333 rm -f powerpc-altivec32l.c powerpc-cell32l.c powerpc-vsx32l.c
334 rm -f powerpc-altivec64l.c powerpc-cell64l.c powerpc-vsx64l.c
2c4ad781
TJB
335 rm -f powerpc-isa205-32l.c powerpc-isa205-64l.c
336 rm -f powerpc-isa205-altivec32l.c powerpc-isa205-vsx32l.c powerpc-isa205-altivec64l.c
337 rm -f powerpc-isa205-vsx64l.c
7803799a 338 rm -f s390-linux32.c s390-linux64.c s390x-linux64.c
4ac33720
UW
339 rm -f s390-linux32v1.c s390-linux32v2.c s390-linux64v1.c
340 rm -f s390-linux64v2.c s390x-linux64v1.c s390x-linux64v2.c
341 rm -f s390-te-linux32.c s390-te-linux64.c
58dbd541 342 rm -f tic6x-c64xp-linux.c tic6x-c64x-linux.c tic6x-c62x-linux.c
2c4ad781 343 rm -f xml-builtin.c stamp-xml
1570b33e 344 rm -f i386-avx.c i386-avx-linux.c
a196ebeb 345 rm -f i386-mpx.c i386-mpx-linux.c
1570b33e 346 rm -f amd64-avx.c amd64-avx-linux.c
a196ebeb 347 rm -f amd64-mpx.c amd64-mpx-linux.c
3a13a53b 348 rm -f i386-mmx.c i386-mmx-linux.c
4d47af5c
L
349 rm -f x32.c x32-linux.c
350 rm -f x32-avx.c x32-avx-linux.c
c971b7fa 351 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c 352
a59d1c82 353maintainer-clean realclean distclean: clean
c971b7fa
PA
354 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
355 rm -rf $(GNULIB_BUILDDIR)
356 rm -f Makefile config.status config.h stamp-h config.log
357 rm -f Makefile
358
359subdir_do: force
360 @for i in $(DODIRS); do \
361 case $$i in \
362 $(REQUIRED_SUBDIRS)) \
363 if [ ! -f ./$$i/Makefile ] ; then \
364 echo "Missing $$i/Makefile" >&2 ; \
365 exit 1 ; \
366 fi ;; \
367 esac ; \
368 if [ -f ./$$i/Makefile ] ; then \
369 if (cd ./$$i; \
370 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
371 else exit 1 ; fi ; \
372 else true ; fi ; \
373 done
c906108c 374
c3a3ccc7
DJ
375config.h: stamp-h ; @true
376stamp-h: config.in config.status
e0e76420 377 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
0729219d 378
7ea81414 379Makefile: Makefile.in config.status
0729219d 380 CONFIG_HEADERS="" $(SHELL) ./config.status
c906108c 381
c971b7fa
PA
382$(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
383 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
c9a1864a
YQ
384 CONFIG_COMMANDS="depfiles" \
385 CONFIG_HEADERS= \
386 CONFIG_LINKS= \
c971b7fa 387 $(SHELL) config.status
c9a1864a 388
17ef446e 389config.status: configure configure.srv $(srcdir)/../development.sh
d6e9fb05
JK
390 $(SHELL) ./config.status --recheck
391
c9a1864a
YQ
392# automatic rebuilding in automake-generated Makefiles requires
393# this rule in the toplevel Makefile, which, with GNU make, causes
394# the desired updates through the implicit regeneration of the Makefile
395# and all of its prerequisites.
396am--refresh:
397 @:
398
c906108c
SS
399force:
400
d6c2da54 401version.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
01208463 402 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
bd885420 403 $(host_alias) $(target_alias) version.c
c906108c 404
fb1e4ffc
DJ
405xml-builtin.c: stamp-xml; @true
406stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
407 rm -f xml-builtin.tmp
408 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
409 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin.c
410 echo stamp > stamp-xml
411
9b4b61c8 412.PRECIOUS: xml-builtin.c
fb1e4ffc 413
c906108c
SS
414# GNU Make has an annoying habit of putting *all* the Makefile variables
415# into the environment, unless you include this target as a circumvention.
416# Rumor is that this will be fixed (and this target can be removed)
417# in GNU Make 4.0.
418.NOEXPORT:
419
420# GNU Make 3.63 has a different problem: it keeps tacking command line
421# overrides onto the definition of $(MAKE). This variable setting
422# will remove them.
423MAKEOVERRIDES=
424
0c74b2a7 425regdat_sh = $(srcdir)/../regformats/regdat.sh
7a60ad40 426
0fb4aa4b
PA
427UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
428
fa593d66
PA
429# Note, we only build the IPA if -fvisibility=hidden is supported in
430# the first place.
0fb4aa4b 431IPAGENT_CFLAGS = $(CPPFLAGS) $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
3ba6ad0f 432 -fPIC -DIN_PROCESS_AGENT \
fa593d66
PA
433 -fvisibility=hidden
434
61c125b9
TT
435IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
436
fa593d66 437# In-process agent object rules
61c125b9
TT
438ax-ipa.o: ax.c
439 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
440 $(POSTCOMPILE)
441tracepoint-ipa.o: tracepoint.c
442 $(IPAGENT_COMPILE) $<
443 $(POSTCOMPILE)
444utils-ipa.o: utils.c
445 $(IPAGENT_COMPILE) $<
446 $(POSTCOMPILE)
447format-ipa.o: ../common/format.c
448 $(IPAGENT_COMPILE) $<
449 $(POSTCOMPILE)
450common-utils-ipa.o: ../common/common-utils.c
451 $(IPAGENT_COMPILE) $<
452 $(POSTCOMPILE)
453remote-utils-ipa.o: remote-utils.c
454 $(IPAGENT_COMPILE) $<
455 $(POSTCOMPILE)
456regcache-ipa.o: regcache.c
457 $(IPAGENT_COMPILE) $<
458 $(POSTCOMPILE)
459i386-linux-ipa.o: i386-linux.c
460 $(IPAGENT_COMPILE) $<
461 $(POSTCOMPILE)
462linux-i386-ipa.o: linux-i386-ipa.c
463 $(IPAGENT_COMPILE) $<
464 $(POSTCOMPILE)
465linux-amd64-ipa.o: linux-amd64-ipa.c
466 $(IPAGENT_COMPILE) $<
467 $(POSTCOMPILE)
468amd64-linux-ipa.o: amd64-linux.c
469 $(IPAGENT_COMPILE) $<
470 $(POSTCOMPILE)
3aee8918
PA
471tdesc-ipa.o: tdesc.c
472 $(IPAGENT_COMPILE) $<
473 $(POSTCOMPILE)
61c125b9
TT
474
475ax.o: ax.c
476 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
477 $(POSTCOMPILE)
478
479signals.o: ../common/signals.c
480 $(COMPILE) $<
481 $(POSTCOMPILE)
482linux-procfs.o: ../common/linux-procfs.c
483 $(COMPILE) $<
484 $(POSTCOMPILE)
485linux-ptrace.o: ../common/linux-ptrace.c
486 $(COMPILE) $<
487 $(POSTCOMPILE)
488common-utils.o: ../common/common-utils.c
489 $(COMPILE) $<
490 $(POSTCOMPILE)
491vec.o: ../common/vec.c
492 $(COMPILE) $<
493 $(POSTCOMPILE)
494gdb_vecs.o: ../common/gdb_vecs.c
495 $(COMPILE) $<
496 $(POSTCOMPILE)
497xml-utils.o: ../common/xml-utils.c
498 $(COMPILE) $<
499 $(POSTCOMPILE)
500linux-osdata.o: ../common/linux-osdata.c
501 $(COMPILE) $<
502 $(POSTCOMPILE)
503ptid.o: ../common/ptid.c
504 $(COMPILE) $<
505 $(POSTCOMPILE)
506buffer.o: ../common/buffer.c
507 $(COMPILE) $<
508 $(POSTCOMPILE)
509format.o: ../common/format.c
510 $(COMPILE) $<
511 $(POSTCOMPILE)
614c279d
TT
512filestuff.o: ../common/filestuff.c
513 $(COMPILE) $<
514 $(POSTCOMPILE)
61c125b9
TT
515agent.o: ../common/agent.c
516 $(COMPILE) $<
517 $(POSTCOMPILE)
33b60d58 518waitstatus.o: ../target/waitstatus.c
3360c0bf
LM
519 $(COMPILE) $<
520 $(POSTCOMPILE)
2fa291ac 521
8e7e9910
PA
522linux-btrace.o: ../common/linux-btrace.c
523 $(COMPILE) $<
524 $(POSTCOMPILE)
7c97f91e 525
8e7e9910
PA
526mips-linux-watch.o: ../common/mips-linux-watch.c
527 $(COMPILE) $<
528 $(POSTCOMPILE)
7a60ad40 529
96d7229d
LM
530# Native object files rules from ../nat
531
532linux-waitpid.o: ../nat/linux-waitpid.c
533 $(COMPILE) $<
534 $(POSTCOMPILE)
535
bb0116a4
JB
536# We build vasprintf with -DHAVE_CONFIG_H because we want that unit to
537# include our config.h file. Otherwise, some system headers do not get
538# included, and the compiler emits a warning about implicitly defined
539# functions (missing declaration).
540vasprintf.o: $(srcdir)/../../libiberty/vasprintf.c
61c125b9
TT
541 $(COMPILE) $< -DHAVE_CONFIG_H
542 $(POSTCOMPILE)
bb0116a4 543vsnprintf.o: $(srcdir)/../../libiberty/vsnprintf.c
61c125b9
TT
544 $(COMPILE) $<
545 $(POSTCOMPILE)
379a5e2d
JB
546safe-ctype.o: $(srcdir)/../../libiberty/safe-ctype.c
547 $(COMPILE) $<
548 $(POSTCOMPILE)
549lbasename.o: $(srcdir)/../../libiberty/lbasename.c
550 $(COMPILE) $<
551 $(POSTCOMPILE)
bb0116a4 552
176eb98c
MS
553aarch64.c : $(srcdir)/../regformats/aarch64.dat $(regdat_sh)
554 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/aarch64.dat aarch64.c
0c74b2a7 555reg-arm.c : $(srcdir)/../regformats/reg-arm.dat $(regdat_sh)
75f83163 556 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-arm.dat reg-arm.c
fb1e4ffc 557arm-with-iwmmxt.c : $(srcdir)/../regformats/arm-with-iwmmxt.dat $(regdat_sh)
75f83163 558 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-iwmmxt.dat arm-with-iwmmxt.c
58d6951d
DJ
559arm-with-vfpv2.c : $(srcdir)/../regformats/arm-with-vfpv2.dat $(regdat_sh)
560 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv2.dat arm-with-vfpv2.c
58d6951d
DJ
561arm-with-vfpv3.c : $(srcdir)/../regformats/arm-with-vfpv3.dat $(regdat_sh)
562 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv3.dat arm-with-vfpv3.c
58d6951d
DJ
563arm-with-neon.c : $(srcdir)/../regformats/arm-with-neon.dat $(regdat_sh)
564 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-neon.dat arm-with-neon.c
eb826dc6
MF
565reg-bfin.c : $(srcdir)/../regformats/reg-bfin.dat $(regdat_sh)
566 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-bfin.dat reg-bfin.c
45b134e5 567reg-cris.c : $(srcdir)/../regformats/reg-cris.dat $(regdat_sh)
75f83163 568 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cris.dat reg-cris.c
45b134e5 569reg-crisv32.c : $(srcdir)/../regformats/reg-crisv32.dat $(regdat_sh)
75f83163 570 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-crisv32.dat reg-crisv32.c
90884b2b
L
571i386.c : $(srcdir)/../regformats/i386/i386.dat $(regdat_sh)
572 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386.dat i386.c
90884b2b
L
573i386-linux.c : $(srcdir)/../regformats/i386/i386-linux.dat $(regdat_sh)
574 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-linux.dat i386-linux.c
1570b33e
L
575i386-avx.c : $(srcdir)/../regformats/i386/i386-avx.dat $(regdat_sh)
576 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx.dat i386-avx.c
1570b33e
L
577i386-avx-linux.c : $(srcdir)/../regformats/i386/i386-avx-linux.dat $(regdat_sh)
578 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx-linux.dat i386-avx-linux.c
a196ebeb
WT
579i386-mpx.c : $(srcdir)/../regformats/i386/i386-mpx.dat $(regdat_sh)
580 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mpx.dat i386-mpx.c
581i386-mpx-linux.c : $(srcdir)/../regformats/i386/i386-mpx-linux.dat $(regdat_sh)
582 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mpx-linux.dat i386-mpx-linux.c
3a13a53b
L
583i386-mmx.c : $(srcdir)/../regformats/i386/i386-mmx.dat $(regdat_sh)
584 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx.dat i386-mmx.c
3a13a53b
L
585i386-mmx-linux.c : $(srcdir)/../regformats/i386/i386-mmx-linux.dat $(regdat_sh)
586 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx-linux.dat i386-mmx-linux.c
0c74b2a7 587reg-ia64.c : $(srcdir)/../regformats/reg-ia64.dat $(regdat_sh)
75f83163 588 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-ia64.dat reg-ia64.c
7cfbc4a0 589reg-m32r.c : $(srcdir)/../regformats/reg-m32r.dat $(regdat_sh)
75f83163 590 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m32r.dat reg-m32r.c
0c74b2a7 591reg-m68k.c : $(srcdir)/../regformats/reg-m68k.dat $(regdat_sh)
75f83163 592 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m68k.dat reg-m68k.c
9ac544ce
MK
593reg-cf.c : $(srcdir)/../regformats/reg-cf.dat $(regdat_sh)
594 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cf.dat reg-cf.c
117ce543 595mips-linux.c : $(srcdir)/../regformats/mips-linux.dat $(regdat_sh)
75f83163 596 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-linux.dat mips-linux.c
1faeff08
MR
597mips-dsp-linux.c : $(srcdir)/../regformats/mips-dsp-linux.dat $(regdat_sh)
598 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-dsp-linux.dat mips-dsp-linux.c
117ce543 599mips64-linux.c : $(srcdir)/../regformats/mips64-linux.dat $(regdat_sh)
75f83163 600 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-linux.dat mips64-linux.c
1faeff08
MR
601mips64-dsp-linux.c : $(srcdir)/../regformats/mips64-dsp-linux.dat $(regdat_sh)
602 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-dsp-linux.dat mips64-dsp-linux.c
68f5f838
SL
603nios2-linux.c : $(srcdir)/../regformats/nios2-linux.dat $(regdat_sh)
604 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/nios2-linux.dat nios2-linux.c
0482b03b
JB
605powerpc-32.c : $(srcdir)/../regformats/rs6000/powerpc-32.dat $(regdat_sh)
606 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32.dat powerpc-32.c
7284e1be
UW
607powerpc-32l.c : $(srcdir)/../regformats/rs6000/powerpc-32l.dat $(regdat_sh)
608 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32l.dat powerpc-32l.c
7284e1be
UW
609powerpc-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat $(regdat_sh)
610 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat powerpc-altivec32l.c
f4d9bade
UW
611powerpc-cell32l.c : $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat $(regdat_sh)
612 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat powerpc-cell32l.c
677c5bb1
LM
613powerpc-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat $(regdat_sh)
614 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat powerpc-vsx32l.c
2c4ad781
TJB
615powerpc-isa205-32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat $(regdat_sh)
616 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat powerpc-isa205-32l.c
2c4ad781
TJB
617powerpc-isa205-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat $(regdat_sh)
618 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat powerpc-isa205-altivec32l.c
2c4ad781
TJB
619powerpc-isa205-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat $(regdat_sh)
620 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat powerpc-isa205-vsx32l.c
7284e1be
UW
621powerpc-e500l.c : $(srcdir)/../regformats/rs6000/powerpc-e500l.dat $(regdat_sh)
622 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-e500l.dat powerpc-e500l.c
7284e1be
UW
623powerpc-64l.c : $(srcdir)/../regformats/rs6000/powerpc-64l.dat $(regdat_sh)
624 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-64l.dat powerpc-64l.c
7284e1be
UW
625powerpc-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat $(regdat_sh)
626 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat powerpc-altivec64l.c
f4d9bade
UW
627powerpc-cell64l.c : $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat $(regdat_sh)
628 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat powerpc-cell64l.c
677c5bb1
LM
629powerpc-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat $(regdat_sh)
630 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat powerpc-vsx64l.c
2c4ad781
TJB
631powerpc-isa205-64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat $(regdat_sh)
632 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat powerpc-isa205-64l.c
2c4ad781
TJB
633powerpc-isa205-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat $(regdat_sh)
634 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat powerpc-isa205-altivec64l.c
2c4ad781
TJB
635powerpc-isa205-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat $(regdat_sh)
636 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat powerpc-isa205-vsx64l.c
7803799a
UW
637s390-linux32.c : $(srcdir)/../regformats/s390-linux32.dat $(regdat_sh)
638 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32.dat s390-linux32.c
c642a434
UW
639s390-linux32v1.c : $(srcdir)/../regformats/s390-linux32v1.dat $(regdat_sh)
640 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v1.dat s390-linux32v1.c
c642a434
UW
641s390-linux32v2.c : $(srcdir)/../regformats/s390-linux32v2.dat $(regdat_sh)
642 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v2.dat s390-linux32v2.c
7803799a
UW
643s390-linux64.c : $(srcdir)/../regformats/s390-linux64.dat $(regdat_sh)
644 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64.dat s390-linux64.c
c642a434
UW
645s390-linux64v1.c : $(srcdir)/../regformats/s390-linux64v1.dat $(regdat_sh)
646 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v1.dat s390-linux64v1.c
c642a434
UW
647s390-linux64v2.c : $(srcdir)/../regformats/s390-linux64v2.dat $(regdat_sh)
648 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v2.dat s390-linux64v2.c
4ac33720
UW
649s390-te-linux64.c : $(srcdir)/../regformats/s390-te-linux64.dat $(regdat_sh)
650 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-te-linux64.dat s390-te-linux64.c
7803799a
UW
651s390x-linux64.c : $(srcdir)/../regformats/s390x-linux64.dat $(regdat_sh)
652 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64.dat s390x-linux64.c
c642a434
UW
653s390x-linux64v1.c : $(srcdir)/../regformats/s390x-linux64v1.dat $(regdat_sh)
654 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v1.dat s390x-linux64v1.c
c642a434
UW
655s390x-linux64v2.c : $(srcdir)/../regformats/s390x-linux64v2.dat $(regdat_sh)
656 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v2.dat s390x-linux64v2.c
4ac33720
UW
657s390x-te-linux64.c : $(srcdir)/../regformats/s390x-te-linux64.dat $(regdat_sh)
658 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-te-linux64.dat s390x-te-linux64.c
58dbd541 659
58dbd541
YQ
660tic6x-c64xp-linux.c : $(srcdir)/../regformats/tic6x-c64xp-linux.dat $(regdat_sh)
661 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64xp-linux.dat tic6x-c64xp-linux.c
58dbd541
YQ
662tic6x-c64x-linux.c : $(srcdir)/../regformats/tic6x-c64x-linux.dat $(regdat_sh)
663 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64x-linux.dat tic6x-c64x-linux.c
58dbd541
YQ
664tic6x-c62x-linux.c : $(srcdir)/../regformats/tic6x-c62x-linux.dat $(regdat_sh)
665 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c62x-linux.dat tic6x-c62x-linux.c
666
0c74b2a7 667reg-sh.c : $(srcdir)/../regformats/reg-sh.dat $(regdat_sh)
75f83163 668 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sh.dat reg-sh.c
dfb64f85
DJ
669reg-sparc64.c : $(srcdir)/../regformats/reg-sparc64.dat $(regdat_sh)
670 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sparc64.dat reg-sparc64.c
a13e2c95 671reg-spu.c : $(srcdir)/../regformats/reg-spu.dat $(regdat_sh)
75f83163 672 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-spu.dat reg-spu.c
90884b2b
L
673amd64.c : $(srcdir)/../regformats/i386/amd64.dat $(regdat_sh)
674 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64.dat amd64.c
90884b2b
L
675amd64-linux.c : $(srcdir)/../regformats/i386/amd64-linux.dat $(regdat_sh)
676 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-linux.dat amd64-linux.c
1570b33e
L
677amd64-avx.c : $(srcdir)/../regformats/i386/amd64-avx.dat $(regdat_sh)
678 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx.dat amd64-avx.c
a196ebeb
WT
679amd64-mpx.c : $(srcdir)/../regformats/i386/amd64-mpx.dat $(regdat_sh)
680 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-mpx.dat amd64-mpx.c
1570b33e
L
681amd64-avx-linux.c : $(srcdir)/../regformats/i386/amd64-avx-linux.dat $(regdat_sh)
682 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx-linux.dat amd64-avx-linux.c
a196ebeb
WT
683amd64-mpx-linux.c : $(srcdir)/../regformats/i386/amd64-mpx-linux.dat $(regdat_sh)
684 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-mpx-linux.dat amd64-mpx-linux.c
4d47af5c
L
685x32.c : $(srcdir)/../regformats/i386/x32.dat $(regdat_sh)
686 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32.dat x32.c
4d47af5c
L
687x32-linux.c : $(srcdir)/../regformats/i386/x32-linux.dat $(regdat_sh)
688 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-linux.dat x32-linux.c
4d47af5c
L
689x32-avx.c : $(srcdir)/../regformats/i386/x32-avx.dat $(regdat_sh)
690 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx.dat x32-avx.c
4d47af5c
L
691x32-avx-linux.c : $(srcdir)/../regformats/i386/x32-avx-linux.dat $(regdat_sh)
692 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx-linux.dat x32-avx-linux.c
1525d545
MG
693reg-xtensa.c : $(srcdir)/../regformats/reg-xtensa.dat $(regdat_sh)
694 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-xtensa.dat reg-xtensa.c
65f479b6
PA
695reg-tilegx.c : $(srcdir)/../regformats/reg-tilegx.dat $(regdat_sh)
696 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-tilegx.dat reg-tilegx.c
e1f58301
JW
697reg-tilegx32.c : $(srcdir)/../regformats/reg-tilegx32.dat $(regdat_sh)
698 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-tilegx32.dat reg-tilegx32.c
61c125b9
TT
699
700#
701# Dependency tracking. Most of this is conditional on GNU Make being
702# found by configure; if GNU Make is not found, we fall back to a
703# simpler scheme.
704#
705
706@GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
707# Note that we put the dependencies into a .Tpo file, then move them
708# into place if the compile succeeds. We need this because gcc does
709# not atomically write the dependency output file.
710@GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
711@GMAKE_TRUE@ -MF $(DEPDIR)/$(basename $(@F)).Tpo
712@GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
713@GMAKE_TRUE@ $(DEPDIR)/$(basename $(@F)).Po
714@GMAKE_TRUE@else
715@GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
716@GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
717# depcomp handles atomicity for us, so we don't need a postcompile
718# step.
719@GMAKE_TRUE@override POSTCOMPILE =
720@GMAKE_TRUE@endif
721
722# A list of all the objects we might care about in this build, for
723# dependency tracking.
724all_object_files = $(OBS) $(GDBREPLAY_OBS)
725
726# Ensure that generated files are created early. Use order-only
727# dependencies if available. They require GNU make 3.80 or newer,
728# and the .VARIABLES variable was introduced at the same time.
729@GMAKE_TRUE@ifdef .VARIABLES
730@GMAKE_TRUE@$(all_object_files): | $(generated_files)
731@GMAKE_TRUE@else
732$(all_object_files) : $(generated_files)
733@GMAKE_TRUE@endif
734
735# Dependencies.
736@GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
737
c906108c 738# This is the end of "Makefile.in".
This page took 1.350082 seconds and 4 git commands to generate.