gdb/gdbserver/
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
CommitLineData
0b302171 1# Copyright (C) 1989-2012 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
d6e9fb05
JK
21host_alias = @host_alias@
22target_alias = @target_alias@
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
SS
43
44SHELL = /bin/sh
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
SS
53
54# Directory containing source files. Don't clean up the spacing,
55# this exact string is matched for by the "configure" script.
d6e9fb05 56srcdir = @srcdir@
c9a1864a
YQ
57abs_top_srcdir=@abs_top_srcdir@
58abs_srcdir=@abs_srcdir@
d6e9fb05 59VPATH = @srcdir@
c906108c
SS
60
61# It is also possible that you will need to add -I/usr/include/sys to the
1b3f6016 62# CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
c906108c
SS
63# is where it should be according to Posix).
64
65# Set this up with gcc if you have gnu ld and the loader will print out
66# line numbers for undefinded refs.
67#CC-LD=gcc -static
68CC-LD=${CC}
69
70# Where is the "include" directory? Traditionally ../include or ./include
71INCLUDE_DIR = ${srcdir}/../../include
72INCLUDE_DEP = $$(INCLUDE_DIR)
73
0fb4aa4b
PA
74# Where is ust? These will be empty if ust was not available.
75ustlibs = @ustlibs@
76ustinc = @ustinc@
77
c9a1864a
YQ
78# gnulib
79GNULIB_INCLUDE_DIR = $(srcdir)/../gnulib
80GNULIB_LIB = gnulib/libgnu.a
81
ecedbe58
PA
82# We build gnulib directly under the gdbserver build directory, but
83# its sources don't live directly under gdbserver's source directory.
84# Tweak $srcdir and VPATH to make that work.
85GNULIB_FLAGS_TO_PASS = \
86 "top_srcdir=$(abs_top_srcdir)/.." \
87 "srcdir=$(abs_srcdir)/../gnulib" \
88 "VPATH=$(abs_top_srcdir)/../gnulib:$(abs_top_srcdir)"
89
c9a1864a
YQ
90# Generated headers in the gnulib directory. These must be listed
91# so that they are generated before other files are compiled.
92GNULIB_H = gnulib/string.h @GNULIB_STDINT_H@
93
c906108c
SS
94# All the includes used for CFLAGS and for lint.
95# -I. for config files.
7ea81414
DJ
96# -I${srcdir} for our headers.
97# -I$(srcdir)/../regformats for regdef.h.
2aecd87f 98INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
c9a1864a
YQ
99 -I$(srcdir)/../regformats -I$(INCLUDE_DIR) \
100 -I$(GNULIB_INCLUDE_DIR)
c906108c
SS
101
102# M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
103# from the config/ directory.
104GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
105#PROFILE_CFLAGS = -pg
106
d4596a3d
PA
107WARN_CFLAGS = @WARN_CFLAGS@
108WERROR_CFLAGS = @WERROR_CFLAGS@
0729219d 109
c906108c
SS
110# CFLAGS is specifically reserved for setting from the command line
111# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
84563040
DJ
112CFLAGS = @CFLAGS@
113
c906108c 114# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
eff1410f 115INTERNAL_CFLAGS_BASE = ${CFLAGS} ${GLOBAL_CFLAGS} \
66b6e1dd 116 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS}
eff1410f 117INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
118INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS)
c906108c
SS
119
120# LDFLAGS is specifically reserved for setting from the command line
121# when running make.
697f7479 122LDFLAGS = @LDFLAGS@
f6de3c42 123INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
c906108c 124
c906108c
SS
125# All source files that go into linking GDB remote server.
126
bf4c19f7 127SFILES= $(srcdir)/gdbreplay.c $(srcdir)/inferiors.c $(srcdir)/dll.c \
f6528abd
JK
128 $(srcdir)/mem-break.c $(srcdir)/proc-service.c \
129 $(srcdir)/proc-service.list $(srcdir)/regcache.c \
73d37363
DJ
130 $(srcdir)/remote-utils.c $(srcdir)/server.c $(srcdir)/target.c \
131 $(srcdir)/thread-db.c $(srcdir)/utils.c \
eb826dc6
MF
132 $(srcdir)/linux-arm-low.c $(srcdir)/linux-bfin-low.c \
133 $(srcdir)/linux-cris-low.c $(srcdir)/linux-crisv32-low.c \
aa5ca48f 134 ${srcdir}/i386-low.c $(srcdir)/i387-fp.c \
73d37363 135 $(srcdir)/linux-ia64-low.c $(srcdir)/linux-low.c \
7cfbc4a0 136 $(srcdir)/linux-m32r-low.c \
73d37363 137 $(srcdir)/linux-m68k-low.c $(srcdir)/linux-mips-low.c \
5b0a002e 138 $(srcdir)/linux-ppc-low.c \
eee84df1 139 $(srcdir)/linux-s390-low.c \
dfb64f85 140 $(srcdir)/linux-sh-low.c $(srcdir)/linux-sparc-low.c \
d0722149 141 $(srcdir)/linux-x86-low.c \
1525d545 142 $(srcdir)/linux-xtensa-low.c \
68070c10 143 $(srcdir)/win32-arm-low.c $(srcdir)/win32-i386-low.c \
59a016f0 144 $(srcdir)/win32-low.c $(srcdir)/wincecompat.c \
d26e3629
KY
145 $(srcdir)/hostio.c $(srcdir)/hostio-errno.c \
146 $(srcdir)/common/common-utils.c $(srcdir)/common/xml-utils.c \
147 $(srcdir)/common/linux-osdata.c $(srcdir)/common/ptid.c \
148 $(srcdir)/common/buffer.c
c906108c 149
7ea81414 150DEPFILES = @GDBSERVER_DEPFILES@
c906108c 151
e28b3332
DJ
152LIBOBJS = @LIBOBJS@
153
7ea81414 154SOURCES = $(SFILES)
1b3f6016 155TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
c906108c 156
2fa291ac 157OBS = agent.o ax.o inferiors.o regcache.o remote-utils.o server.o signals.o target.o \
dd24457d 158 utils.o version.o \
219f2f23 159 mem-break.o hostio.o event-loop.o tracepoint.o \
d26e3629 160 xml-utils.o common-utils.o ptid.o buffer.o \
bf4c19f7 161 dll.o \
fb1e4ffc 162 $(XML_BUILTIN) \
e28b3332 163 $(DEPFILES) $(LIBOBJS)
a417dc56 164GDBREPLAY_OBS = gdbreplay.o version.o
0d62e5e8 165GDBSERVER_LIBS = @GDBSERVER_LIBS@
b80864fb 166XM_CLIBS = @LIBS@
f6528abd 167CDEPS = $(srcdir)/proc-service.list
c906108c 168
fb1e4ffc
DJ
169# XML files to compile in to gdbserver, if any.
170XML_DIR = $(srcdir)/../features
fb1e4ffc
DJ
171XML_FILES = @srv_xmlfiles@
172XML_BUILTIN = @srv_xmlbuiltin@
173
fa593d66
PA
174IPA_DEPFILES = @IPA_DEPFILES@
175extra_libraries = @extra_libraries@
176
f474844c
JZ
177FLAGS_TO_PASS = \
178 "prefix=$(prefix)" \
179 "exec_prefix=$(exec_prefix)" \
180 "infodir=$(infodir)" \
181 "datarootdir=$(datarootdir)" \
182 "docdir=$(docdir)" \
183 "htmldir=$(htmldir)" \
184 "pdfdir=$(pdfdir)" \
185 "libdir=$(libdir)" \
186 "mandir=$(mandir)" \
187 "datadir=$(datadir)" \
188 "includedir=$(includedir)" \
189 "against=$(against)" \
190 "DESTDIR=$(DESTDIR)" \
191 "AR=$(AR)" \
192 "AR_FLAGS=$(AR_FLAGS)" \
193 "CC=$(CC)" \
194 "CFLAGS=$(CFLAGS)" \
195 "CXX=$(CXX)" \
196 "CXXFLAGS=$(CXXFLAGS)" \
197 "DLLTOOL=$(DLLTOOL)" \
198 "LDFLAGS=$(LDFLAGS)" \
199 "RANLIB=$(RANLIB)" \
200 "MAKEINFO=$(MAKEINFO)" \
201 "MAKEHTML=$(MAKEHTML)" \
202 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
203 "INSTALL=$(INSTALL)" \
204 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
205 "INSTALL_DATA=$(INSTALL_DATA)" \
206 "RUNTEST=$(RUNTEST)" \
207 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
208
c906108c
SS
209# Prevent Sun make from putting in the machine type. Setting
210# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
211.c.o:
212 ${CC} -c ${INTERNAL_CFLAGS} $<
213
fa593d66 214all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
ecedbe58 215 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) all
c906108c
SS
216
217# Traditionally "install" depends on "all". But it may be useful
1b3f6016 218# not to; for example, if the user has made some trivial change to a
c906108c
SS
219# source file and doesn't care about rebuilding or just wants to save the
220# time it takes for make to check that all is up to date.
221# install-only is intended to address that need.
f474844c
JZ
222install: all
223 @$(MAKE) $(FLAGS_TO_PASS) install-only
224
1b3f6016 225install-only:
c906108c
SS
226 n=`echo gdbserver | sed '$(program_transform_name)'`; \
227 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
12ac6819 228 if [ x"$(IPA_DEPFILES)" != x ]; then \
fa593d66
PA
229 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
230 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
231 fi; \
c938e9b0 232 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
68070c10 233 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT); \
c938e9b0
L
234 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(man1dir); \
235 $(INSTALL_DATA) $(srcdir)/gdbserver.1 $(DESTDIR)$(man1dir)/$$n.1
ecedbe58 236 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) install
c906108c
SS
237
238uninstall: force
239 n=`echo gdbserver | sed '$(program_transform_name)'`; \
240 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
f1048712 241 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
ecedbe58 242 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) uninstall
c906108c
SS
243
244installcheck:
245check:
9453113a 246info dvi pdf:
c906108c 247install-info:
9453113a 248install-pdf:
085dd6e6
JM
249html:
250install-html:
c9a1864a 251clean-info: force
ecedbe58 252 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) $@
c906108c 253
c9a1864a 254gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(GNULIB_LIB)
68070c10
PA
255 rm -f gdbserver$(EXEEXT)
256 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
c9a1864a
YQ
257 $(GNULIB_LIB) $(GDBSERVER_LIBS) $(XM_CLIBS)
258
259$(GNULIB_LIB) $(GNULIB_H): all-lib
260all-lib: gnulib/Makefile
ecedbe58 261 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) all
c9a1864a
YQ
262
263.PHONY: all-lib
c906108c 264
a417dc56 265gdbreplay$(EXEEXT): $(GDBREPLAY_OBS)
68070c10 266 rm -f gdbreplay$(EXEEXT)
a417dc56 267 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
c906108c
SS
268 $(XM_CLIBS)
269
5e1dc496 270IPA_OBJS=ax-ipa.o tracepoint-ipa.o utils-ipa.o regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o ${IPA_DEPFILES}
fa593d66
PA
271
272IPA_LIB=libinproctrace.so
273
274$(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
275 rm -f $(IPA_LIB)
276 ${CC-LD} -shared -fPIC -Wl,--no-undefined $(INTERNAL_CFLAGS) \
0fb4aa4b 277 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
fa593d66 278
c906108c
SS
279# Put the proper machine-specific files first, so M-. on a machine
280# specific routine gets the one for the correct machine.
281# The xyzzy stuff below deals with empty DEPFILES
282TAGS: ${TAGFILES}
2c0fc042 283 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
c906108c
SS
284 `find ${srcdir}/../config -name ${XM_FILE} -print` \
285 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
286 `for i in yzzy ${DEPFILES}; do \
287 if [ x$$i != xyzzy ]; then \
288 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
289 fi; \
290 done` \
291 ${TAGFILES}
292tags: TAGS
293
294clean:
295 rm -f *.o ${ADD_FILES} *~
dd24457d 296 rm -f version.c
de7c3b4a 297 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
fa593d66 298 rm -f $(IPA_LIB)
eb826dc6 299 rm -f reg-arm.c reg-bfin.c i386.c reg-ia64.c reg-m32r.c reg-m68k.c
90884b2b
L
300 rm -f reg-sh.c reg-sparc.c reg-spu.c amd64.c i386-linux.c
301 rm -f reg-cris.c reg-crisv32.c amd64-linux.c reg-xtensa.c
58d6951d
DJ
302 rm -f arm-with-iwmmxt.c
303 rm -f arm-with-vfpv2.c arm-with-vfpv3.c arm-with-neon.c
304 rm -f mips-linux.c mips64-linux.c
0482b03b 305 rm -f powerpc-32.c powerpc-32l.c powerpc-64l.c powerpc-e500l.c
f4d9bade
UW
306 rm -f powerpc-altivec32l.c powerpc-cell32l.c powerpc-vsx32l.c
307 rm -f powerpc-altivec64l.c powerpc-cell64l.c powerpc-vsx64l.c
2c4ad781
TJB
308 rm -f powerpc-isa205-32l.c powerpc-isa205-64l.c
309 rm -f powerpc-isa205-altivec32l.c powerpc-isa205-vsx32l.c powerpc-isa205-altivec64l.c
310 rm -f powerpc-isa205-vsx64l.c
7803799a 311 rm -f s390-linux32.c s390-linux64.c s390x-linux64.c
58dbd541 312 rm -f tic6x-c64xp-linux.c tic6x-c64x-linux.c tic6x-c62x-linux.c
2c4ad781 313 rm -f xml-builtin.c stamp-xml
1570b33e
L
314 rm -f i386-avx.c i386-avx-linux.c
315 rm -f amd64-avx.c amd64-avx-linux.c
3a13a53b 316 rm -f i386-mmx.c i386-mmx-linux.c
4d47af5c
L
317 rm -f x32.c x32-linux.c
318 rm -f x32-avx.c x32-avx-linux.c
ecedbe58 319 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) clean
c906108c 320
a59d1c82
DJ
321maintainer-clean realclean distclean: clean
322 rm -f nm.h tm.h xm.h config.status config.h stamp-h config.log
c906108c 323 rm -f Makefile
ecedbe58 324 @cd gnulib; $(MAKE) $(FLAGS_TO_PASS) $(GNULIB_FLAGS_TO_PASS) $@
c906108c 325
c3a3ccc7
DJ
326config.h: stamp-h ; @true
327stamp-h: config.in config.status
e0e76420 328 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
0729219d 329
7ea81414 330Makefile: Makefile.in config.status
0729219d 331 CONFIG_HEADERS="" $(SHELL) ./config.status
c906108c 332
c9a1864a
YQ
333gnulib/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
334 CONFIG_COMMANDS="depfiles" \
335 CONFIG_HEADERS= \
336 CONFIG_LINKS= \
337 $(SHELL) config.status "gnulib/Makefile"
338
93652174 339config.status: configure configure.srv
d6e9fb05
JK
340 $(SHELL) ./config.status --recheck
341
c9a1864a
YQ
342# automatic rebuilding in automake-generated Makefiles requires
343# this rule in the toplevel Makefile, which, with GNU make, causes
344# the desired updates through the implicit regeneration of the Makefile
345# and all of its prerequisites.
346am--refresh:
347 @:
348
c906108c
SS
349force:
350
dd24457d
DJ
351version.c: Makefile $(srcdir)/../version.in
352 rm -f version.c-tmp version.c
353 echo '#include "server.h"' >> version.c-tmp
354 echo 'const char version[] = "'"`sed q ${srcdir}/../version.in`"'";' >> version.c-tmp
355 echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
356 mv version.c-tmp version.c
357version.o: version.c $(server_h)
c906108c 358
fb1e4ffc
DJ
359xml-builtin.c: stamp-xml; @true
360stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
361 rm -f xml-builtin.tmp
362 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
363 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin.c
364 echo stamp > stamp-xml
365
9b4b61c8 366.PRECIOUS: xml-builtin.c
fb1e4ffc 367
c906108c
SS
368# GNU Make has an annoying habit of putting *all* the Makefile variables
369# into the environment, unless you include this target as a circumvention.
370# Rumor is that this will be fixed (and this target can be removed)
371# in GNU Make 4.0.
372.NOEXPORT:
373
374# GNU Make 3.63 has a different problem: it keeps tacking command line
375# overrides onto the definition of $(MAKE). This variable setting
376# will remove them.
377MAKEOVERRIDES=
378
0050a760 379gdb_proc_service_h = $(srcdir)/gdb_proc_service.h
0c74b2a7 380regdat_sh = $(srcdir)/../regformats/regdat.sh
0a30fbc4
DJ
381regdef_h = $(srcdir)/../regformats/regdef.h
382regcache_h = $(srcdir)/regcache.h
a19cae16 383signals_def = $(srcdir)/../../include/gdb/signals.def
310444ac 384signals_h = $(srcdir)/../../include/gdb/signals.h $(signals_def)
d26e3629 385ptid_h = $(srcdir)/../common/ptid.h
5e1dc496 386ax_h = $(srcdir)/ax.h
2fa291ac 387agent_h = $(srcdir)/../common/agent.h
d26e3629 388linux_osdata_h = $(srcdir)/../common/linux-osdata.h
611cb4a5 389server_h = $(srcdir)/server.h $(regcache_h) config.h $(srcdir)/target.h \
a19cae16 390 $(srcdir)/mem-break.h $(srcdir)/../common/gdb_signals.h \
d26e3629
KY
391 $(srcdir)/../common/common-utils.h \
392 $(srcdir)/../common/xml-utils.h \
393 $(srcdir)/../common/buffer.h \
394 $(srcdir)/../common/gdb_assert.h \
395 $(srcdir)/../common/gdb_locale.h \
396 $(ptid_h) \
310444ac 397 $(signals_h)
0a30fbc4 398
67cc2626
PA
399linux_low_h = $(srcdir)/linux-low.h
400
af96c192
YQ
401linux_ptrace_h = $(srcdir)/../common/linux-ptrace.h
402
6938fd34
YQ
403gdb_thread_db_h = $(srcdir)/../common/gdb_thread_db.h
404
e3deef73
LM
405linux_procfs_h = $(srcdir)/../common/linux-procfs.h
406
8ed54b31
JB
407lynx_low_h = $(srcdir)/lynx-low.h $(srcdir)/server.h
408
a8ae7dc0
AR
409nto_low_h = $(srcdir)/nto-low.h
410
0fb4aa4b
PA
411UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
412
fa593d66
PA
413# Note, we only build the IPA if -fvisibility=hidden is supported in
414# the first place.
0fb4aa4b 415IPAGENT_CFLAGS = $(CPPFLAGS) $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
fa593d66
PA
416 -fPIC -DGDBSERVER -DIN_PROCESS_AGENT \
417 -fvisibility=hidden
418
419# In-process agent object rules
5e1dc496
LM
420ax-ipa.o: ax.c $(server_h) $(ax_h) $(srcdir)/../common/ax.def
421 $(CC) -c $(IPAGENT_CFLAGS) $< -o ax-ipa.o
422tracepoint-ipa.o: tracepoint.c $(server_h) ${ax_h}
fa593d66
PA
423 $(CC) -c $(IPAGENT_CFLAGS) $< -o tracepoint-ipa.o
424utils-ipa.o: utils.c $(server_h)
425 $(CC) -c $(IPAGENT_CFLAGS) $< -o utils-ipa.o
d26e3629
KY
426common-utils-ipa.o: ../common/common-utils.c $(server_h)
427 $(CC) -c $(IPAGENT_CFLAGS) $< -o common-utils-ipa.o
fa593d66
PA
428remote-utils-ipa.o: remote-utils.c $(server_h)
429 $(CC) -c $(IPAGENT_CFLAGS) $< -o remote-utils-ipa.o
430regcache-ipa.o: regcache.c $(server_h)
431 $(CC) -c $(IPAGENT_CFLAGS) $< -o regcache-ipa.o
432i386-linux-ipa.o : i386-linux.c $(regdef_h)
433 $(CC) -c $(IPAGENT_CFLAGS) $< -o i386-linux-ipa.o
434linux-i386-ipa.o: linux-i386-ipa.c $(server_h)
435 $(CC) -c $(IPAGENT_CFLAGS) $< -o linux-i386-ipa.o
436linux-amd64-ipa.o: linux-amd64-ipa.c $(server_h)
437 $(CC) -c $(IPAGENT_CFLAGS) $< -o linux-amd64-ipa.o
438amd64-linux-ipa.o : amd64-linux.c $(regdef_h)
439 $(CC) -c $(IPAGENT_CFLAGS) $< -o amd64-linux-ipa.o
440
5e1dc496 441ax.o: ax.c $(server_h) $(ax_h) $(srcdir)/../common/ax.def
bd99dc85 442event-loop.o: event-loop.c $(server_h)
a6b151f1 443hostio.o: hostio.c $(server_h)
59a016f0 444hostio-errno.o: hostio-errno.c $(server_h)
ce3a066d 445inferiors.o: inferiors.c $(server_h)
5e1dc496 446mem-break.o: mem-break.c $(server_h) $(ax_h)
0d62e5e8 447proc-service.o: proc-service.c $(server_h) $(gdb_proc_service_h)
ce3a066d 448regcache.o: regcache.c $(server_h) $(regdef_h)
7ea81414 449remote-utils.o: remote-utils.c terminal.h $(server_h)
d1feda86 450server.o: server.c $(server_h) $(agent_h)
ce3a066d 451target.o: target.c $(server_h)
6938fd34
YQ
452thread-db.o: thread-db.c $(server_h) $(linux_low_h) $(gdb_proc_service_h) \
453 $(gdb_thread_db_h)
2fa291ac 454tracepoint.o: tracepoint.c $(server_h) $(ax_h) $(agent_h)
0a30fbc4 455utils.o: utils.c $(server_h)
6e23a804 456gdbreplay.o: gdbreplay.c config.h
bf4c19f7 457dll.o: dll.c $(server_h)
0a30fbc4 458
e637a4f5
YQ
459signals.o: ../common/signals.c $(server_h) $(signals_def)
460 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
461
e3deef73
LM
462linux-procfs.o: ../common/linux-procfs.c $(server_h)
463 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
464
5f572dec
JK
465linux-ptrace.o: ../common/linux-ptrace.c $(server_h)
466 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
467
d26e3629
KY
468common-utils.o: ../common/common-utils.c $(server_h)
469 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
470
471xml-utils.o: ../common/xml-utils.c $(server_h)
472 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
473
474linux-osdata.o: ../common/linux-osdata.c $(server_h) $(linux_osdata_h) ../common/gdb_dirent.h
475 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
476
477ptid.o: ../common/ptid.c $(ptid_h)
478 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
479
480buffer.o: ../common/buffer.c $(server_h)
481 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
482
2fa291ac
YQ
483agent.o: ../common/agent.c $(server_h) $(agent_h)
484 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< -DGDBSERVER
485
bb0116a4
JB
486# We build vasprintf with -DHAVE_CONFIG_H because we want that unit to
487# include our config.h file. Otherwise, some system headers do not get
488# included, and the compiler emits a warning about implicitly defined
489# functions (missing declaration).
490vasprintf.o: $(srcdir)/../../libiberty/vasprintf.c
491 $(CC) -o vasprintf.o -c $(CPPFLAGS) $(INTERNAL_CFLAGS) -DHAVE_CONFIG_H $<
492vsnprintf.o: $(srcdir)/../../libiberty/vsnprintf.c
493 $(CC) -o vsnprintf.o -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
494
aa5ca48f
DE
495i386_low_h = $(srcdir)/i386-low.h
496
497i386-low.o: i386-low.c $(i386_low_h) $(server_h) $(target_h)
498
58caa3dc
DJ
499i387-fp.o: i387-fp.c $(server_h)
500
e3deef73 501linux-low.o: linux-low.c $(linux_low_h) $(linux_ptrace_h) $(linux_procfs_h) \
58b4daa5 502 $(server_h) $(linux_osdata_h) $(agent_h)
0d62e5e8
DJ
503 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< @USE_THREAD_DB@
504
9308fc88
DJ
505linux-arm-low.o: linux-arm-low.c $(linux_low_h) $(server_h) \
506 $(gdb_proc_service_h)
eb826dc6 507linux-bfin-low.o: linux-bfin-low.c $(linux_low_h) $(server_h)
45b134e5
OF
508linux-cris-low.o: linux-cris-low.c $(linux_low_h) $(server_h)
509linux-crisv32-low.o: linux-crisv32-low.c $(linux_low_h) $(server_h)
58caa3dc 510linux-ia64-low.o: linux-ia64-low.c $(linux_low_h) $(server_h)
7cfbc4a0 511linux-m32r-low.o: linux-m32r-low.c $(linux_low_h) $(server_h)
21b0f40c
DJ
512linux-mips-low.o: linux-mips-low.c $(linux_low_h) $(server_h) \
513 $(gdb_proc_service_h)
58caa3dc 514linux-ppc-low.o: linux-ppc-low.c $(linux_low_h) $(server_h)
265f716b 515linux-s390-low.o: linux-s390-low.c $(linux_low_h) $(server_h)
58caa3dc 516linux-sh-low.o: linux-sh-low.c $(linux_low_h) $(server_h)
58dbd541 517linux-tic6x-low.o: linux-tic6x-low.c $(linux_low_h) $(server_h)
d0722149 518linux-x86-low.o: linux-x86-low.c $(linux_low_h) $(server_h) \
58b4daa5 519 $(gdb_proc_service_h) $(i386_low_h) $(agent_h)
1525d545 520linux-xtensa-low.o: linux-xtensa-low.c xtensa-xtregs.c $(linux_low_h) $(server_h)
0a30fbc4 521
8ed54b31
JB
522lynx-low.o: lynx-low.c $(server_h) $(target_h) $(lynx_low_h)
523lynx-ppc-low.o: lynx-ppc-low.c $(server_h) $(lynx_low_h)
a8ae7dc0
AR
524nto-low.o: nto-low.c $(server_h) $(nto_low_h)
525nto-x86-low.o: nto-x86-low.c $(server_h) $(nto_low_h) $(regdef_h) $(regcache_h)
526
a385171d
PA
527win32_low_h = $(srcdir)/win32-low.h
528
529win32-low.o: win32-low.c $(win32_low_h) $(server_h) $(regdef_h) $(regcache_h)
530
531win32-arm-low.o: win32-arm-low.c $(win32_low_h) $(server_h)
aa5ca48f 532win32-i386-low.o: win32-i386-low.c $(win32_low_h) $(server_h) $(i386_low_h)
b80864fb 533
a13e2c95
UW
534spu-low.o: spu-low.c $(server_h)
535
0c74b2a7
DJ
536reg-arm.o : reg-arm.c $(regdef_h)
537reg-arm.c : $(srcdir)/../regformats/reg-arm.dat $(regdat_sh)
75f83163 538 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-arm.dat reg-arm.c
fb1e4ffc
DJ
539arm-with-iwmmxt.o : arm-with-iwmmxt.c $(regdef_h)
540arm-with-iwmmxt.c : $(srcdir)/../regformats/arm-with-iwmmxt.dat $(regdat_sh)
75f83163 541 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-iwmmxt.dat arm-with-iwmmxt.c
58d6951d
DJ
542arm-with-vfpv2.o : arm-with-vfpv2.c $(regdef_h)
543arm-with-vfpv2.c : $(srcdir)/../regformats/arm-with-vfpv2.dat $(regdat_sh)
544 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv2.dat arm-with-vfpv2.c
545arm-with-vfpv3.o : arm-with-vfpv3.c $(regdef_h)
546arm-with-vfpv3.c : $(srcdir)/../regformats/arm-with-vfpv3.dat $(regdat_sh)
547 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv3.dat arm-with-vfpv3.c
548arm-with-neon.o : arm-with-neon.c $(regdef_h)
549arm-with-neon.c : $(srcdir)/../regformats/arm-with-neon.dat $(regdat_sh)
550 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-neon.dat arm-with-neon.c
eb826dc6
MF
551reg-bfin.o : reg-bfin.c $(regdef_h)
552reg-bfin.c : $(srcdir)/../regformats/reg-bfin.dat $(regdat_sh)
553 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-bfin.dat reg-bfin.c
45b134e5
OF
554reg-cris.o : reg-cris.c $(regdef_h)
555reg-cris.c : $(srcdir)/../regformats/reg-cris.dat $(regdat_sh)
75f83163 556 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cris.dat reg-cris.c
45b134e5
OF
557reg-crisv32.o : reg-crisv32.c $(regdef_h)
558reg-crisv32.c : $(srcdir)/../regformats/reg-crisv32.dat $(regdat_sh)
75f83163 559 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-crisv32.dat reg-crisv32.c
90884b2b
L
560i386.o : i386.c $(regdef_h)
561i386.c : $(srcdir)/../regformats/i386/i386.dat $(regdat_sh)
562 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386.dat i386.c
563i386-linux.o : i386-linux.c $(regdef_h)
564i386-linux.c : $(srcdir)/../regformats/i386/i386-linux.dat $(regdat_sh)
565 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-linux.dat i386-linux.c
1570b33e
L
566i386-avx.o : i386-avx.c $(regdef_h)
567i386-avx.c : $(srcdir)/../regformats/i386/i386-avx.dat $(regdat_sh)
568 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx.dat i386-avx.c
569i386-avx-linux.o : i386-avx-linux.c $(regdef_h)
570i386-avx-linux.c : $(srcdir)/../regformats/i386/i386-avx-linux.dat $(regdat_sh)
571 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx-linux.dat i386-avx-linux.c
3a13a53b
L
572i386-mmx.o : i386-mmx.c $(regdef_h)
573i386-mmx.c : $(srcdir)/../regformats/i386/i386-mmx.dat $(regdat_sh)
574 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx.dat i386-mmx.c
575i386-mmx-linux.o : i386-mmx-linux.c $(regdef_h)
576i386-mmx-linux.c : $(srcdir)/../regformats/i386/i386-mmx-linux.dat $(regdat_sh)
577 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx-linux.dat i386-mmx-linux.c
0c74b2a7
DJ
578reg-ia64.o : reg-ia64.c $(regdef_h)
579reg-ia64.c : $(srcdir)/../regformats/reg-ia64.dat $(regdat_sh)
75f83163 580 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-ia64.dat reg-ia64.c
7cfbc4a0
KI
581reg-m32r.o : reg-m32r.c $(regdef_h)
582reg-m32r.c : $(srcdir)/../regformats/reg-m32r.dat $(regdat_sh)
75f83163 583 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m32r.dat reg-m32r.c
0c74b2a7
DJ
584reg-m68k.o : reg-m68k.c $(regdef_h)
585reg-m68k.c : $(srcdir)/../regformats/reg-m68k.dat $(regdat_sh)
75f83163 586 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m68k.dat reg-m68k.c
9ac544ce
MK
587reg-cf.o : reg-cf.c $(regdef_h)
588reg-cf.c : $(srcdir)/../regformats/reg-cf.dat $(regdat_sh)
589 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cf.dat reg-cf.c
117ce543
DJ
590mips-linux.o : mips-linux.c $(regdef_h)
591mips-linux.c : $(srcdir)/../regformats/mips-linux.dat $(regdat_sh)
75f83163 592 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-linux.dat mips-linux.c
1faeff08
MR
593mips-dsp-linux.o : mips-dsp-linux.c $(regdef_h)
594mips-dsp-linux.c : $(srcdir)/../regformats/mips-dsp-linux.dat $(regdat_sh)
595 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-dsp-linux.dat mips-dsp-linux.c
117ce543
DJ
596mips64-linux.o : mips64-linux.c $(regdef_h)
597mips64-linux.c : $(srcdir)/../regformats/mips64-linux.dat $(regdat_sh)
75f83163 598 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-linux.dat mips64-linux.c
1faeff08
MR
599mips64-dsp-linux.o : mips64-dsp-linux.c $(regdef_h)
600mips64-dsp-linux.c : $(srcdir)/../regformats/mips64-dsp-linux.dat $(regdat_sh)
601 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-dsp-linux.dat mips64-dsp-linux.c
0482b03b
JB
602powerpc-32.o : powerpc-32.c $(regdef_h)
603powerpc-32.c : $(srcdir)/../regformats/rs6000/powerpc-32.dat $(regdat_sh)
604 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32.dat powerpc-32.c
7284e1be
UW
605powerpc-32l.o : powerpc-32l.c $(regdef_h)
606powerpc-32l.c : $(srcdir)/../regformats/rs6000/powerpc-32l.dat $(regdat_sh)
607 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32l.dat powerpc-32l.c
608powerpc-altivec32l.o : powerpc-altivec32l.c $(regdef_h)
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.o : powerpc-cell32l.c $(regdef_h)
612powerpc-cell32l.c : $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat $(regdat_sh)
613 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat powerpc-cell32l.c
677c5bb1
LM
614powerpc-vsx32l.o : powerpc-vsx32l.c $(regdef_h)
615powerpc-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat $(regdat_sh)
616 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat powerpc-vsx32l.c
2c4ad781
TJB
617powerpc-isa205-32l.o : powerpc-isa205-32l.c $(regdef_h)
618powerpc-isa205-32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat $(regdat_sh)
619 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat powerpc-isa205-32l.c
620powerpc-isa205-altivec32l.o : powerpc-isa205-altivec32l.c $(regdef_h)
621powerpc-isa205-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat $(regdat_sh)
622 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat powerpc-isa205-altivec32l.c
623powerpc-isa205-vsx32l.o : powerpc-isa205-vsx32l.c $(regdef_h)
624powerpc-isa205-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat $(regdat_sh)
625 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat powerpc-isa205-vsx32l.c
7284e1be
UW
626powerpc-e500l.o : powerpc-e500l.c $(regdef_h)
627powerpc-e500l.c : $(srcdir)/../regformats/rs6000/powerpc-e500l.dat $(regdat_sh)
628 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-e500l.dat powerpc-e500l.c
629powerpc-64l.o : powerpc-64l.c $(regdef_h)
630powerpc-64l.c : $(srcdir)/../regformats/rs6000/powerpc-64l.dat $(regdat_sh)
631 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-64l.dat powerpc-64l.c
632powerpc-altivec64l.o : powerpc-altivec64l.c $(regdef_h)
633powerpc-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat $(regdat_sh)
634 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat powerpc-altivec64l.c
f4d9bade
UW
635powerpc-cell64l.o : powerpc-cell64l.c $(regdef_h)
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.o : powerpc-vsx64l.c $(regdef_h)
639powerpc-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat $(regdat_sh)
640 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat powerpc-vsx64l.c
2c4ad781
TJB
641powerpc-isa205-64l.o : powerpc-isa205-64l.c $(regdef_h)
642powerpc-isa205-64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat $(regdat_sh)
643 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat powerpc-isa205-64l.c
644powerpc-isa205-altivec64l.o : powerpc-isa205-altivec64l.c $(regdef_h)
645powerpc-isa205-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat $(regdat_sh)
646 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat powerpc-isa205-altivec64l.c
647powerpc-isa205-vsx64l.o : powerpc-isa205-vsx64l.c $(regdef_h)
648powerpc-isa205-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat $(regdat_sh)
649 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat powerpc-isa205-vsx64l.c
7803799a
UW
650s390-linux32.o : s390-linux32.c $(regdef_h)
651s390-linux32.c : $(srcdir)/../regformats/s390-linux32.dat $(regdat_sh)
652 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32.dat s390-linux32.c
c642a434
UW
653s390-linux32v1.o : s390-linux32v1.c $(regdef_h)
654s390-linux32v1.c : $(srcdir)/../regformats/s390-linux32v1.dat $(regdat_sh)
655 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v1.dat s390-linux32v1.c
656s390-linux32v2.o : s390-linux32v2.c $(regdef_h)
657s390-linux32v2.c : $(srcdir)/../regformats/s390-linux32v2.dat $(regdat_sh)
658 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v2.dat s390-linux32v2.c
7803799a
UW
659s390-linux64.o : s390-linux64.c $(regdef_h)
660s390-linux64.c : $(srcdir)/../regformats/s390-linux64.dat $(regdat_sh)
661 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64.dat s390-linux64.c
c642a434
UW
662s390-linux64v1.o : s390-linux64v1.c $(regdef_h)
663s390-linux64v1.c : $(srcdir)/../regformats/s390-linux64v1.dat $(regdat_sh)
664 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v1.dat s390-linux64v1.c
665s390-linux64v2.o : s390-linux64v2.c $(regdef_h)
666s390-linux64v2.c : $(srcdir)/../regformats/s390-linux64v2.dat $(regdat_sh)
667 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v2.dat s390-linux64v2.c
7803799a
UW
668s390x-linux64.o : s390x-linux64.c $(regdef_h)
669s390x-linux64.c : $(srcdir)/../regformats/s390x-linux64.dat $(regdat_sh)
670 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64.dat s390x-linux64.c
c642a434
UW
671s390x-linux64v1.o : s390x-linux64v1.c $(regdef_h)
672s390x-linux64v1.c : $(srcdir)/../regformats/s390x-linux64v1.dat $(regdat_sh)
673 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v1.dat s390x-linux64v1.c
674s390x-linux64v2.o : s390x-linux64v2.c $(regdef_h)
675s390x-linux64v2.c : $(srcdir)/../regformats/s390x-linux64v2.dat $(regdat_sh)
676 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v2.dat s390x-linux64v2.c
58dbd541
YQ
677
678tic6x-c64xp-linux.o : tic6x-c64xp-linux.c $(regdef_h)
679tic6x-c64xp-linux.c : $(srcdir)/../regformats/tic6x-c64xp-linux.dat $(regdat_sh)
680 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64xp-linux.dat tic6x-c64xp-linux.c
681tic6x-c64x-linux.o : tic6x-c64x-linux.c $(regdef_h)
682tic6x-c64x-linux.c : $(srcdir)/../regformats/tic6x-c64x-linux.dat $(regdat_sh)
683 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64x-linux.dat tic6x-c64x-linux.c
684tic6x-c62x-linux.o : tic6x-c62x-linux.c $(regdef_h)
685tic6x-c62x-linux.c : $(srcdir)/../regformats/tic6x-c62x-linux.dat $(regdat_sh)
686 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c62x-linux.dat tic6x-c62x-linux.c
687
0c74b2a7
DJ
688reg-sh.o : reg-sh.c $(regdef_h)
689reg-sh.c : $(srcdir)/../regformats/reg-sh.dat $(regdat_sh)
75f83163 690 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sh.dat reg-sh.c
dfb64f85
DJ
691reg-sparc64.o : reg-sparc64.c $(regdef_h)
692reg-sparc64.c : $(srcdir)/../regformats/reg-sparc64.dat $(regdat_sh)
693 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sparc64.dat reg-sparc64.c
a13e2c95
UW
694reg-spu.o : reg-spu.c $(regdef_h)
695reg-spu.c : $(srcdir)/../regformats/reg-spu.dat $(regdat_sh)
75f83163 696 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-spu.dat reg-spu.c
90884b2b
L
697amd64.o : amd64.c $(regdef_h)
698amd64.c : $(srcdir)/../regformats/i386/amd64.dat $(regdat_sh)
699 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64.dat amd64.c
700amd64-linux.o : amd64-linux.c $(regdef_h)
701amd64-linux.c : $(srcdir)/../regformats/i386/amd64-linux.dat $(regdat_sh)
702 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-linux.dat amd64-linux.c
1570b33e
L
703amd64-avx.o : amd64-avx.c $(regdef_h)
704amd64-avx.c : $(srcdir)/../regformats/i386/amd64-avx.dat $(regdat_sh)
705 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx.dat amd64-avx.c
706amd64-avx-linux.o : amd64-avx-linux.c $(regdef_h)
707amd64-avx-linux.c : $(srcdir)/../regformats/i386/amd64-avx-linux.dat $(regdat_sh)
708 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx-linux.dat amd64-avx-linux.c
4d47af5c
L
709x32.o : x32.c $(regdef_h)
710x32.c : $(srcdir)/../regformats/i386/x32.dat $(regdat_sh)
711 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32.dat x32.c
712x32-linux.o : x32-linux.c $(regdef_h)
713x32-linux.c : $(srcdir)/../regformats/i386/x32-linux.dat $(regdat_sh)
714 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-linux.dat x32-linux.c
715x32-avx.o : x32-avx.c $(regdef_h)
716x32-avx.c : $(srcdir)/../regformats/i386/x32-avx.dat $(regdat_sh)
717 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx.dat x32-avx.c
718x32-avx-linux.o : x32-avx-linux.c $(regdef_h)
719x32-avx-linux.c : $(srcdir)/../regformats/i386/x32-avx-linux.dat $(regdat_sh)
720 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx-linux.dat x32-avx-linux.c
1525d545
MG
721reg-xtensa.o : reg-xtensa.c $(regdef_h)
722reg-xtensa.c : $(srcdir)/../regformats/reg-xtensa.dat $(regdat_sh)
723 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-xtensa.dat reg-xtensa.c
c906108c 724# This is the end of "Makefile.in".
This page took 0.90946 seconds and 4 git commands to generate.