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