* Makefile.in: (INTERNAL_CFLAGS): Add -DGDBSERVER
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
1 # Copyright (C) 1989-2012 Free Software Foundation, Inc.
2
3 # This file is part of GDB.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 prefix = @prefix@
19 exec_prefix = @exec_prefix@
20
21 host_alias = @host_alias@
22 target_alias = @target_alias@
23 program_transform_name = @program_transform_name@
24 bindir = @bindir@
25 libdir = @libdir@
26 tooldir = $(libdir)/$(target_alias)
27
28 datarootdir = @datarootdir@
29 datadir = @datadir@
30 mandir = @mandir@
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = @infodir@
41 htmldir = $(prefix)/html
42 includedir = @includedir@
43
44 SHELL = /bin/sh
45 EXEEXT = @EXEEXT@
46
47 INSTALL = @INSTALL@
48 INSTALL_PROGRAM = @INSTALL_PROGRAM@
49 INSTALL_DATA = @INSTALL_DATA@
50 RANLIB = @RANLIB@
51
52 CC = @CC@
53
54 # Directory containing source files. Don't clean up the spacing,
55 # this exact string is matched for by the "configure" script.
56 srcdir = @srcdir@
57 abs_top_srcdir=@abs_top_srcdir@
58 abs_srcdir=@abs_srcdir@
59 VPATH = @srcdir@
60
61 # It is also possible that you will need to add -I/usr/include/sys to the
62 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
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
68 CC-LD=${CC}
69
70 # Where is the "include" directory? Traditionally ../include or ./include
71 INCLUDE_DIR = ${srcdir}/../../include
72 INCLUDE_DEP = $$(INCLUDE_DIR)
73
74 # Where is ust? These will be empty if ust was not available.
75 ustlibs = @ustlibs@
76 ustinc = @ustinc@
77
78 # gnulib
79 GNULIB_BUILDDIR = build-gnulib-gdbserver
80 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
81 INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
82
83 # Generated headers in the gnulib directory. These must be listed
84 # so that they are generated before other files are compiled.
85 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
86
87 # All the includes used for CFLAGS and for lint.
88 # -I. for config files.
89 # -I${srcdir} for our headers.
90 # -I$(srcdir)/../regformats for regdef.h.
91 INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
92 -I$(srcdir)/../regformats -I$(INCLUDE_DIR) \
93 $(INCGNU)
94
95 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
96 # from the config/ directory.
97 GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
98 #PROFILE_CFLAGS = -pg
99
100 WARN_CFLAGS = @WARN_CFLAGS@
101 WERROR_CFLAGS = @WERROR_CFLAGS@
102
103 WARN_CFLAGS_NO_FORMAT = `echo " $(WARN_CFLAGS) " \
104 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
105
106 # CFLAGS is specifically reserved for setting from the command line
107 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
108 CFLAGS = @CFLAGS@
109
110 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
111 INTERNAL_CFLAGS_BASE = ${CFLAGS} ${GLOBAL_CFLAGS} \
112 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS}
113 INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
114 INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER
115
116 # LDFLAGS is specifically reserved for setting from the command line
117 # when running make.
118 LDFLAGS = @LDFLAGS@
119 INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
120
121 # All source files that go into linking GDB remote server.
122
123 SFILES= $(srcdir)/gdbreplay.c $(srcdir)/inferiors.c $(srcdir)/dll.c \
124 $(srcdir)/mem-break.c $(srcdir)/proc-service.c \
125 $(srcdir)/proc-service.list $(srcdir)/regcache.c \
126 $(srcdir)/remote-utils.c $(srcdir)/server.c $(srcdir)/target.c \
127 $(srcdir)/thread-db.c $(srcdir)/utils.c \
128 $(srcdir)/linux-arm-low.c $(srcdir)/linux-bfin-low.c \
129 $(srcdir)/linux-cris-low.c $(srcdir)/linux-crisv32-low.c \
130 ${srcdir}/i386-low.c $(srcdir)/i387-fp.c \
131 $(srcdir)/linux-ia64-low.c $(srcdir)/linux-low.c \
132 $(srcdir)/linux-m32r-low.c \
133 $(srcdir)/linux-m68k-low.c $(srcdir)/linux-mips-low.c \
134 $(srcdir)/linux-ppc-low.c \
135 $(srcdir)/linux-s390-low.c \
136 $(srcdir)/linux-sh-low.c $(srcdir)/linux-sparc-low.c \
137 $(srcdir)/linux-x86-low.c \
138 $(srcdir)/linux-xtensa-low.c \
139 $(srcdir)/linux-tile-low.c \
140 $(srcdir)/win32-arm-low.c $(srcdir)/win32-i386-low.c \
141 $(srcdir)/win32-low.c $(srcdir)/wincecompat.c \
142 $(srcdir)/hostio.c $(srcdir)/hostio-errno.c \
143 $(srcdir)/common/vec.c $(srcdir)/common/gdb_vecs.c \
144 $(srcdir)/common/common-utils.c $(srcdir)/common/xml-utils.c \
145 $(srcdir)/common/linux-osdata.c $(srcdir)/common/ptid.c \
146 $(srcdir)/common/buffer.c
147
148 DEPFILES = @GDBSERVER_DEPFILES@
149
150 LIBOBJS = @LIBOBJS@
151
152 SOURCES = $(SFILES)
153 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
154
155 OBS = agent.o ax.o inferiors.o regcache.o remote-utils.o server.o signals.o target.o \
156 utils.o version.o vec.o gdb_vecs.o \
157 mem-break.o hostio.o event-loop.o tracepoint.o \
158 xml-utils.o common-utils.o ptid.o buffer.o format.o \
159 dll.o \
160 $(XML_BUILTIN) \
161 $(DEPFILES) $(LIBOBJS)
162 GDBREPLAY_OBS = gdbreplay.o version.o
163 GDBSERVER_LIBS = @GDBSERVER_LIBS@
164 XM_CLIBS = @LIBS@
165 CDEPS = $(srcdir)/proc-service.list
166
167 # XML files to compile in to gdbserver, if any.
168 XML_DIR = $(srcdir)/../features
169 XML_FILES = @srv_xmlfiles@
170 XML_BUILTIN = @srv_xmlbuiltin@
171
172 IPA_DEPFILES = @IPA_DEPFILES@
173 extra_libraries = @extra_libraries@
174
175 SUBDIRS = $(GNULIB_BUILDDIR)
176 CLEANDIRS = $(SUBDIRS)
177
178 # List of subdirectories in the build tree that must exist.
179 # This is used to force build failures in existing trees when
180 # a new directory is added.
181 # The format here is for the `case' shell command.
182 REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR)
183
184 FLAGS_TO_PASS = \
185 "prefix=$(prefix)" \
186 "exec_prefix=$(exec_prefix)" \
187 "infodir=$(infodir)" \
188 "datarootdir=$(datarootdir)" \
189 "docdir=$(docdir)" \
190 "htmldir=$(htmldir)" \
191 "pdfdir=$(pdfdir)" \
192 "libdir=$(libdir)" \
193 "mandir=$(mandir)" \
194 "datadir=$(datadir)" \
195 "includedir=$(includedir)" \
196 "against=$(against)" \
197 "DESTDIR=$(DESTDIR)" \
198 "AR=$(AR)" \
199 "AR_FLAGS=$(AR_FLAGS)" \
200 "CC=$(CC)" \
201 "CFLAGS=$(CFLAGS)" \
202 "CXX=$(CXX)" \
203 "CXXFLAGS=$(CXXFLAGS)" \
204 "DLLTOOL=$(DLLTOOL)" \
205 "LDFLAGS=$(LDFLAGS)" \
206 "RANLIB=$(RANLIB)" \
207 "MAKEINFO=$(MAKEINFO)" \
208 "MAKEHTML=$(MAKEHTML)" \
209 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
210 "INSTALL=$(INSTALL)" \
211 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
212 "INSTALL_DATA=$(INSTALL_DATA)" \
213 "RUNTEST=$(RUNTEST)" \
214 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
215
216 # All generated files which can be included by another file.
217 generated_files = config.h $(GNULIB_H)
218
219 # Prevent Sun make from putting in the machine type. Setting
220 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
221 .c.o:
222 ${CC} -c ${INTERNAL_CFLAGS} $<
223
224 all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
225 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
226
227 # Traditionally "install" depends on "all". But it may be useful
228 # not to; for example, if the user has made some trivial change to a
229 # source file and doesn't care about rebuilding or just wants to save the
230 # time it takes for make to check that all is up to date.
231 # install-only is intended to address that need.
232 install: all
233 @$(MAKE) $(FLAGS_TO_PASS) install-only
234
235 install-only:
236 n=`echo gdbserver | sed '$(program_transform_name)'`; \
237 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
238 if [ x"$(IPA_DEPFILES)" != x ]; then \
239 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
240 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
241 fi; \
242 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
243 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT); \
244 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(man1dir); \
245 $(INSTALL_DATA) $(srcdir)/gdbserver.1 $(DESTDIR)$(man1dir)/$$n.1
246 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
247
248 uninstall: force
249 n=`echo gdbserver | sed '$(program_transform_name)'`; \
250 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
251 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
252 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
253
254 installcheck:
255 check:
256 info dvi pdf:
257 install-info:
258 install-pdf:
259 html:
260 install-html:
261 clean-info: force
262 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
263
264 gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU)
265 rm -f gdbserver$(EXEEXT)
266 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
267 $(LIBGNU) $(GDBSERVER_LIBS) $(XM_CLIBS)
268
269 $(LIBGNU) $(GNULIB_H): all-lib
270 all-lib: $(GNULIB_BUILDDIR)/Makefile
271 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
272 .PHONY: all-lib
273
274 gdbreplay$(EXEEXT): $(GDBREPLAY_OBS)
275 rm -f gdbreplay$(EXEEXT)
276 ${CC-LD} $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
277 $(XM_CLIBS)
278
279 IPA_OBJS=ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o ${IPA_DEPFILES}
280
281 IPA_LIB=libinproctrace.so
282
283 $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
284 rm -f $(IPA_LIB)
285 ${CC-LD} -shared -fPIC -Wl,--no-undefined $(INTERNAL_CFLAGS) \
286 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
287
288 # Put the proper machine-specific files first, so M-. on a machine
289 # specific routine gets the one for the correct machine.
290 # The xyzzy stuff below deals with empty DEPFILES
291 TAGS: ${TAGFILES}
292 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
293 `find ${srcdir}/../config -name ${XM_FILE} -print` \
294 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
295 `for i in yzzy ${DEPFILES}; do \
296 if [ x$$i != xyzzy ]; then \
297 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
298 fi; \
299 done` \
300 ${TAGFILES}
301 tags: TAGS
302
303 clean:
304 rm -f *.o ${ADD_FILES} *~
305 rm -f version.c
306 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
307 rm -f $(IPA_LIB)
308 rm -f reg-arm.c reg-bfin.c i386.c reg-ia64.c reg-m32r.c reg-m68k.c
309 rm -f reg-sh.c reg-sparc.c reg-spu.c amd64.c i386-linux.c
310 rm -f reg-cris.c reg-crisv32.c amd64-linux.c reg-xtensa.c
311 rm -f arm-with-iwmmxt.c
312 rm -f arm-with-vfpv2.c arm-with-vfpv3.c arm-with-neon.c
313 rm -f mips-linux.c mips64-linux.c
314 rm -f powerpc-32.c powerpc-32l.c powerpc-64l.c powerpc-e500l.c
315 rm -f powerpc-altivec32l.c powerpc-cell32l.c powerpc-vsx32l.c
316 rm -f powerpc-altivec64l.c powerpc-cell64l.c powerpc-vsx64l.c
317 rm -f powerpc-isa205-32l.c powerpc-isa205-64l.c
318 rm -f powerpc-isa205-altivec32l.c powerpc-isa205-vsx32l.c powerpc-isa205-altivec64l.c
319 rm -f powerpc-isa205-vsx64l.c
320 rm -f s390-linux32.c s390-linux64.c s390x-linux64.c
321 rm -f tic6x-c64xp-linux.c tic6x-c64x-linux.c tic6x-c62x-linux.c
322 rm -f xml-builtin.c stamp-xml
323 rm -f i386-avx.c i386-avx-linux.c
324 rm -f amd64-avx.c amd64-avx-linux.c
325 rm -f i386-mmx.c i386-mmx-linux.c
326 rm -f x32.c x32-linux.c
327 rm -f x32-avx.c x32-avx-linux.c
328 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
329
330 maintainer-clean realclean distclean: clean
331 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
332 rm -rf $(GNULIB_BUILDDIR)
333 rm -f Makefile config.status config.h stamp-h config.log
334 rm -f Makefile
335
336 subdir_do: force
337 @for i in $(DODIRS); do \
338 case $$i in \
339 $(REQUIRED_SUBDIRS)) \
340 if [ ! -f ./$$i/Makefile ] ; then \
341 echo "Missing $$i/Makefile" >&2 ; \
342 exit 1 ; \
343 fi ;; \
344 esac ; \
345 if [ -f ./$$i/Makefile ] ; then \
346 if (cd ./$$i; \
347 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
348 else exit 1 ; fi ; \
349 else true ; fi ; \
350 done
351
352 config.h: stamp-h ; @true
353 stamp-h: config.in config.status
354 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
355
356 Makefile: Makefile.in config.status
357 CONFIG_HEADERS="" $(SHELL) ./config.status
358
359 $(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
360 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
361 CONFIG_COMMANDS="depfiles" \
362 CONFIG_HEADERS= \
363 CONFIG_LINKS= \
364 $(SHELL) config.status
365
366 config.status: configure configure.srv
367 $(SHELL) ./config.status --recheck
368
369 # automatic rebuilding in automake-generated Makefiles requires
370 # this rule in the toplevel Makefile, which, with GNU make, causes
371 # the desired updates through the implicit regeneration of the Makefile
372 # and all of its prerequisites.
373 am--refresh:
374 @:
375
376 force:
377
378 version.c: Makefile $(srcdir)/../version.in
379 rm -f version.c-tmp version.c
380 echo '#include "server.h"' >> version.c-tmp
381 echo 'const char version[] = "'"`sed q ${srcdir}/../version.in`"'";' >> version.c-tmp
382 echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
383 mv version.c-tmp version.c
384 version.o: version.c $(server_h)
385
386 xml-builtin.c: stamp-xml; @true
387 stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
388 rm -f xml-builtin.tmp
389 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
390 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin.c
391 echo stamp > stamp-xml
392
393 .PRECIOUS: xml-builtin.c
394
395 # GNU Make has an annoying habit of putting *all* the Makefile variables
396 # into the environment, unless you include this target as a circumvention.
397 # Rumor is that this will be fixed (and this target can be removed)
398 # in GNU Make 4.0.
399 .NOEXPORT:
400
401 # GNU Make 3.63 has a different problem: it keeps tacking command line
402 # overrides onto the definition of $(MAKE). This variable setting
403 # will remove them.
404 MAKEOVERRIDES=
405
406 gdb_proc_service_h = $(srcdir)/gdb_proc_service.h
407 regdat_sh = $(srcdir)/../regformats/regdat.sh
408 regdef_h = $(srcdir)/../regformats/regdef.h
409 regcache_h = $(srcdir)/regcache.h
410 signals_def = $(srcdir)/../../include/gdb/signals.def
411 signals_h = $(srcdir)/../../include/gdb/signals.h $(signals_def)
412 ptid_h = $(srcdir)/../common/ptid.h
413 ax_h = $(srcdir)/ax.h
414 agent_h = $(srcdir)/../common/agent.h
415 linux_osdata_h = $(srcdir)/../common/linux-osdata.h
416 vec_h = $(srcdir)/../common/vec.h
417 gdb_vecs_h = $(srcdir)/../common/gdb_vecs.h
418 host_defs_h = $(srcdir)/../common/host-defs.h
419 libiberty_h = $(srcdir)/../../include/libiberty.h
420 # Since everything must include server.h, we make that depend on
421 # generated files.
422 server_h = $(srcdir)/server.h $(regcache_h) $(srcdir)/target.h \
423 $(srcdir)/mem-break.h $(srcdir)/../common/gdb_signals.h \
424 $(srcdir)/../common/common-utils.h \
425 $(srcdir)/../common/xml-utils.h \
426 $(srcdir)/../common/buffer.h \
427 $(srcdir)/../common/gdb_assert.h \
428 $(srcdir)/../common/gdb_locale.h \
429 $(ptid_h) \
430 $(signals_h) \
431 $(libiberty_h) \
432 $(srcdir)/../../include/ansidecl.h \
433 $(generated_files)
434
435 gdbthread_h = $(srcdir)/gdbthread.h $(target_h) $(srcdir)/server.h
436 linux_low_h = $(srcdir)/linux-low.h $(gdbthread_h)
437
438 linux_ptrace_h = $(srcdir)/../common/linux-ptrace.h
439
440 gdb_thread_db_h = $(srcdir)/../common/gdb_thread_db.h
441
442 linux_procfs_h = $(srcdir)/../common/linux-procfs.h
443
444 lynx_low_h = $(srcdir)/lynx-low.h $(srcdir)/server.h
445
446 nto_low_h = $(srcdir)/nto-low.h
447
448 UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
449
450 # Note, we only build the IPA if -fvisibility=hidden is supported in
451 # the first place.
452 IPAGENT_CFLAGS = $(CPPFLAGS) $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
453 -fPIC -DIN_PROCESS_AGENT \
454 -fvisibility=hidden
455
456 # In-process agent object rules
457 ax-ipa.o: ax.c $(server_h) $(ax_h) $(srcdir)/../common/ax.def
458 $(CC) -c $(IPAGENT_CFLAGS) $(WARN_CFLAGS_NO_FORMAT) $< -o ax-ipa.o
459 tracepoint-ipa.o: tracepoint.c $(server_h) ${ax_h}
460 $(CC) -c $(IPAGENT_CFLAGS) $< -o tracepoint-ipa.o
461 utils-ipa.o: utils.c $(server_h)
462 $(CC) -c $(IPAGENT_CFLAGS) $< -o utils-ipa.o
463 format-ipa.o: ../common/format.c $(server_h) ${ax_h}
464 $(CC) -c $(IPAGENT_CFLAGS) $< -o format-ipa.o
465 common-utils-ipa.o: ../common/common-utils.c $(server_h)
466 $(CC) -c $(IPAGENT_CFLAGS) $< -o common-utils-ipa.o
467 remote-utils-ipa.o: remote-utils.c $(server_h)
468 $(CC) -c $(IPAGENT_CFLAGS) $< -o remote-utils-ipa.o
469 regcache-ipa.o: regcache.c $(server_h)
470 $(CC) -c $(IPAGENT_CFLAGS) $< -o regcache-ipa.o
471 i386-linux-ipa.o : i386-linux.c $(regdef_h)
472 $(CC) -c $(IPAGENT_CFLAGS) $< -o i386-linux-ipa.o
473 linux-i386-ipa.o: linux-i386-ipa.c $(server_h)
474 $(CC) -c $(IPAGENT_CFLAGS) $< -o linux-i386-ipa.o
475 linux-amd64-ipa.o: linux-amd64-ipa.c $(server_h)
476 $(CC) -c $(IPAGENT_CFLAGS) $< -o linux-amd64-ipa.o
477 amd64-linux-ipa.o : amd64-linux.c $(regdef_h)
478 $(CC) -c $(IPAGENT_CFLAGS) $< -o amd64-linux-ipa.o
479
480 ax.o: ax.c $(server_h) $(ax_h) $(srcdir)/../common/ax.def
481 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $(WARN_CFLAGS_NO_FORMAT) $<
482 event-loop.o: event-loop.c $(server_h)
483 hostio.o: hostio.c $(server_h)
484 hostio-errno.o: hostio-errno.c $(server_h)
485 inferiors.o: inferiors.c $(server_h) $(gdbthread_h)
486 mem-break.o: mem-break.c $(server_h) $(ax_h)
487 proc-service.o: proc-service.c $(server_h) $(gdb_proc_service_h)
488 regcache.o: regcache.c $(server_h) $(regdef_h) $(gdbthread_h)
489 remote-utils.o: remote-utils.c terminal.h $(server_h) $(gdbthread_h)
490 server.o: server.c $(server_h) $(agent_h) $(gdbthread_h)
491 target.o: target.c $(server_h)
492 thread-db.o: thread-db.c $(server_h) $(linux_low_h) $(gdb_proc_service_h) \
493 $(gdb_thread_db_h) $(gdb_vecs_h)
494 tracepoint.o: tracepoint.c $(server_h) $(ax_h) $(agent_h) $(gdbthread_h)
495 utils.o: utils.c $(server_h)
496 gdbreplay.o: gdbreplay.c config.h
497 dll.o: dll.c $(server_h)
498
499 signals.o: ../common/signals.c $(server_h) $(signals_def)
500 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
501
502 linux-procfs.o: ../common/linux-procfs.c $(server_h)
503 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
504
505 linux-ptrace.o: ../common/linux-ptrace.c $(server_h)
506 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
507
508 common-utils.o: ../common/common-utils.c $(server_h)
509 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
510
511 vec.o: ../common/vec.c $(vec_h)
512 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
513
514 gdb_vecs.o: ../common/gdb_vecs.c $(vec_h) $(gdb_vecs_h) $(host_defs_h)
515 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
516
517 xml-utils.o: ../common/xml-utils.c $(server_h)
518 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
519
520 linux-osdata.o: ../common/linux-osdata.c $(server_h) $(linux_osdata_h) ../common/gdb_dirent.h
521 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
522
523 ptid.o: ../common/ptid.c $(ptid_h)
524 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
525
526 buffer.o: ../common/buffer.c $(server_h)
527 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
528
529 format.o: ../common/format.c $(server_h)
530 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
531
532 agent.o: ../common/agent.c $(server_h) $(agent_h)
533 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
534
535 # We build vasprintf with -DHAVE_CONFIG_H because we want that unit to
536 # include our config.h file. Otherwise, some system headers do not get
537 # included, and the compiler emits a warning about implicitly defined
538 # functions (missing declaration).
539 vasprintf.o: $(srcdir)/../../libiberty/vasprintf.c
540 $(CC) -o vasprintf.o -c $(CPPFLAGS) $(INTERNAL_CFLAGS) -DHAVE_CONFIG_H $<
541 vsnprintf.o: $(srcdir)/../../libiberty/vsnprintf.c
542 $(CC) -o vsnprintf.o -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
543
544 i386_low_h = $(srcdir)/i386-low.h
545
546 i386-low.o: i386-low.c $(i386_low_h) $(server_h) $(target_h)
547
548 i387-fp.o: i387-fp.c $(server_h)
549
550 linux-low.o: linux-low.c $(linux_low_h) $(linux_ptrace_h) $(linux_procfs_h) \
551 $(server_h) $(linux_osdata_h) $(agent_h)
552 $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< @USE_THREAD_DB@
553
554 linux-arm-low.o: linux-arm-low.c $(linux_low_h) $(server_h) \
555 $(gdb_proc_service_h)
556 linux-bfin-low.o: linux-bfin-low.c $(linux_low_h) $(server_h) $(libiberty_h)
557 linux-cris-low.o: linux-cris-low.c $(linux_low_h) $(server_h)
558 linux-crisv32-low.o: linux-crisv32-low.c $(linux_low_h) $(server_h)
559 linux-ia64-low.o: linux-ia64-low.c $(linux_low_h) $(server_h)
560 linux-m32r-low.o: linux-m32r-low.c $(linux_low_h) $(server_h)
561 linux-mips-low.o: linux-mips-low.c $(linux_low_h) $(server_h) \
562 $(gdb_proc_service_h)
563 linux-ppc-low.o: linux-ppc-low.c $(linux_low_h) $(server_h)
564 linux-s390-low.o: linux-s390-low.c $(linux_low_h) $(server_h)
565 linux-sh-low.o: linux-sh-low.c $(linux_low_h) $(server_h)
566 linux-tic6x-low.o: linux-tic6x-low.c $(linux_low_h) $(server_h)
567 linux-x86-low.o: linux-x86-low.c $(linux_low_h) $(server_h) \
568 $(gdb_proc_service_h) $(i386_low_h) $(agent_h)
569 linux-xtensa-low.o: linux-xtensa-low.c xtensa-xtregs.c $(linux_low_h) $(server_h)
570 linux-tile-low.o: linux-tile-low.c $(linux_low_h) $(server_h)
571
572 lynx-low.o: lynx-low.c $(server_h) $(target_h) $(lynx_low_h)
573 lynx-ppc-low.o: lynx-ppc-low.c $(server_h) $(lynx_low_h)
574 nto-low.o: nto-low.c $(server_h) $(nto_low_h) $(gdbthread_h)
575 nto-x86-low.o: nto-x86-low.c $(server_h) $(nto_low_h) $(regdef_h) $(regcache_h)
576
577 win32_low_h = $(srcdir)/win32-low.h
578
579 win32-low.o: win32-low.c $(win32_low_h) $(server_h) $(regdef_h) $(regcache_h) $(gdbthread_h)
580
581 win32-arm-low.o: win32-arm-low.c $(win32_low_h) $(server_h)
582 win32-i386-low.o: win32-i386-low.c $(win32_low_h) $(server_h) $(i386_low_h)
583
584 spu-low.o: spu-low.c $(server_h)
585
586 reg-arm.o : reg-arm.c $(regdef_h)
587 reg-arm.c : $(srcdir)/../regformats/reg-arm.dat $(regdat_sh)
588 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-arm.dat reg-arm.c
589 arm-with-iwmmxt.o : arm-with-iwmmxt.c $(regdef_h)
590 arm-with-iwmmxt.c : $(srcdir)/../regformats/arm-with-iwmmxt.dat $(regdat_sh)
591 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-iwmmxt.dat arm-with-iwmmxt.c
592 arm-with-vfpv2.o : arm-with-vfpv2.c $(regdef_h)
593 arm-with-vfpv2.c : $(srcdir)/../regformats/arm-with-vfpv2.dat $(regdat_sh)
594 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv2.dat arm-with-vfpv2.c
595 arm-with-vfpv3.o : arm-with-vfpv3.c $(regdef_h)
596 arm-with-vfpv3.c : $(srcdir)/../regformats/arm-with-vfpv3.dat $(regdat_sh)
597 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-vfpv3.dat arm-with-vfpv3.c
598 arm-with-neon.o : arm-with-neon.c $(regdef_h)
599 arm-with-neon.c : $(srcdir)/../regformats/arm-with-neon.dat $(regdat_sh)
600 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/arm-with-neon.dat arm-with-neon.c
601 reg-bfin.o : reg-bfin.c $(regdef_h)
602 reg-bfin.c : $(srcdir)/../regformats/reg-bfin.dat $(regdat_sh)
603 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-bfin.dat reg-bfin.c
604 reg-cris.o : reg-cris.c $(regdef_h)
605 reg-cris.c : $(srcdir)/../regformats/reg-cris.dat $(regdat_sh)
606 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cris.dat reg-cris.c
607 reg-crisv32.o : reg-crisv32.c $(regdef_h)
608 reg-crisv32.c : $(srcdir)/../regformats/reg-crisv32.dat $(regdat_sh)
609 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-crisv32.dat reg-crisv32.c
610 i386.o : i386.c $(regdef_h)
611 i386.c : $(srcdir)/../regformats/i386/i386.dat $(regdat_sh)
612 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386.dat i386.c
613 i386-linux.o : i386-linux.c $(regdef_h)
614 i386-linux.c : $(srcdir)/../regformats/i386/i386-linux.dat $(regdat_sh)
615 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-linux.dat i386-linux.c
616 i386-avx.o : i386-avx.c $(regdef_h)
617 i386-avx.c : $(srcdir)/../regformats/i386/i386-avx.dat $(regdat_sh)
618 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx.dat i386-avx.c
619 i386-avx-linux.o : i386-avx-linux.c $(regdef_h)
620 i386-avx-linux.c : $(srcdir)/../regformats/i386/i386-avx-linux.dat $(regdat_sh)
621 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-avx-linux.dat i386-avx-linux.c
622 i386-mmx.o : i386-mmx.c $(regdef_h)
623 i386-mmx.c : $(srcdir)/../regformats/i386/i386-mmx.dat $(regdat_sh)
624 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx.dat i386-mmx.c
625 i386-mmx-linux.o : i386-mmx-linux.c $(regdef_h)
626 i386-mmx-linux.c : $(srcdir)/../regformats/i386/i386-mmx-linux.dat $(regdat_sh)
627 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/i386-mmx-linux.dat i386-mmx-linux.c
628 reg-ia64.o : reg-ia64.c $(regdef_h)
629 reg-ia64.c : $(srcdir)/../regformats/reg-ia64.dat $(regdat_sh)
630 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-ia64.dat reg-ia64.c
631 reg-m32r.o : reg-m32r.c $(regdef_h)
632 reg-m32r.c : $(srcdir)/../regformats/reg-m32r.dat $(regdat_sh)
633 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m32r.dat reg-m32r.c
634 reg-m68k.o : reg-m68k.c $(regdef_h)
635 reg-m68k.c : $(srcdir)/../regformats/reg-m68k.dat $(regdat_sh)
636 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-m68k.dat reg-m68k.c
637 reg-cf.o : reg-cf.c $(regdef_h)
638 reg-cf.c : $(srcdir)/../regformats/reg-cf.dat $(regdat_sh)
639 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-cf.dat reg-cf.c
640 mips-linux.o : mips-linux.c $(regdef_h)
641 mips-linux.c : $(srcdir)/../regformats/mips-linux.dat $(regdat_sh)
642 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-linux.dat mips-linux.c
643 mips-dsp-linux.o : mips-dsp-linux.c $(regdef_h)
644 mips-dsp-linux.c : $(srcdir)/../regformats/mips-dsp-linux.dat $(regdat_sh)
645 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips-dsp-linux.dat mips-dsp-linux.c
646 mips64-linux.o : mips64-linux.c $(regdef_h)
647 mips64-linux.c : $(srcdir)/../regformats/mips64-linux.dat $(regdat_sh)
648 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-linux.dat mips64-linux.c
649 mips64-dsp-linux.o : mips64-dsp-linux.c $(regdef_h)
650 mips64-dsp-linux.c : $(srcdir)/../regformats/mips64-dsp-linux.dat $(regdat_sh)
651 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/mips64-dsp-linux.dat mips64-dsp-linux.c
652 powerpc-32.o : powerpc-32.c $(regdef_h)
653 powerpc-32.c : $(srcdir)/../regformats/rs6000/powerpc-32.dat $(regdat_sh)
654 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32.dat powerpc-32.c
655 powerpc-32l.o : powerpc-32l.c $(regdef_h)
656 powerpc-32l.c : $(srcdir)/../regformats/rs6000/powerpc-32l.dat $(regdat_sh)
657 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-32l.dat powerpc-32l.c
658 powerpc-altivec32l.o : powerpc-altivec32l.c $(regdef_h)
659 powerpc-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat $(regdat_sh)
660 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec32l.dat powerpc-altivec32l.c
661 powerpc-cell32l.o : powerpc-cell32l.c $(regdef_h)
662 powerpc-cell32l.c : $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat $(regdat_sh)
663 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell32l.dat powerpc-cell32l.c
664 powerpc-vsx32l.o : powerpc-vsx32l.c $(regdef_h)
665 powerpc-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat $(regdat_sh)
666 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx32l.dat powerpc-vsx32l.c
667 powerpc-isa205-32l.o : powerpc-isa205-32l.c $(regdef_h)
668 powerpc-isa205-32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat $(regdat_sh)
669 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-32l.dat powerpc-isa205-32l.c
670 powerpc-isa205-altivec32l.o : powerpc-isa205-altivec32l.c $(regdef_h)
671 powerpc-isa205-altivec32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat $(regdat_sh)
672 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec32l.dat powerpc-isa205-altivec32l.c
673 powerpc-isa205-vsx32l.o : powerpc-isa205-vsx32l.c $(regdef_h)
674 powerpc-isa205-vsx32l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat $(regdat_sh)
675 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx32l.dat powerpc-isa205-vsx32l.c
676 powerpc-e500l.o : powerpc-e500l.c $(regdef_h)
677 powerpc-e500l.c : $(srcdir)/../regformats/rs6000/powerpc-e500l.dat $(regdat_sh)
678 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-e500l.dat powerpc-e500l.c
679 powerpc-64l.o : powerpc-64l.c $(regdef_h)
680 powerpc-64l.c : $(srcdir)/../regformats/rs6000/powerpc-64l.dat $(regdat_sh)
681 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-64l.dat powerpc-64l.c
682 powerpc-altivec64l.o : powerpc-altivec64l.c $(regdef_h)
683 powerpc-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat $(regdat_sh)
684 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-altivec64l.dat powerpc-altivec64l.c
685 powerpc-cell64l.o : powerpc-cell64l.c $(regdef_h)
686 powerpc-cell64l.c : $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat $(regdat_sh)
687 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-cell64l.dat powerpc-cell64l.c
688 powerpc-vsx64l.o : powerpc-vsx64l.c $(regdef_h)
689 powerpc-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat $(regdat_sh)
690 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-vsx64l.dat powerpc-vsx64l.c
691 powerpc-isa205-64l.o : powerpc-isa205-64l.c $(regdef_h)
692 powerpc-isa205-64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat $(regdat_sh)
693 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-64l.dat powerpc-isa205-64l.c
694 powerpc-isa205-altivec64l.o : powerpc-isa205-altivec64l.c $(regdef_h)
695 powerpc-isa205-altivec64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat $(regdat_sh)
696 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-altivec64l.dat powerpc-isa205-altivec64l.c
697 powerpc-isa205-vsx64l.o : powerpc-isa205-vsx64l.c $(regdef_h)
698 powerpc-isa205-vsx64l.c : $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat $(regdat_sh)
699 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/rs6000/powerpc-isa205-vsx64l.dat powerpc-isa205-vsx64l.c
700 s390-linux32.o : s390-linux32.c $(regdef_h)
701 s390-linux32.c : $(srcdir)/../regformats/s390-linux32.dat $(regdat_sh)
702 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32.dat s390-linux32.c
703 s390-linux32v1.o : s390-linux32v1.c $(regdef_h)
704 s390-linux32v1.c : $(srcdir)/../regformats/s390-linux32v1.dat $(regdat_sh)
705 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v1.dat s390-linux32v1.c
706 s390-linux32v2.o : s390-linux32v2.c $(regdef_h)
707 s390-linux32v2.c : $(srcdir)/../regformats/s390-linux32v2.dat $(regdat_sh)
708 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux32v2.dat s390-linux32v2.c
709 s390-linux64.o : s390-linux64.c $(regdef_h)
710 s390-linux64.c : $(srcdir)/../regformats/s390-linux64.dat $(regdat_sh)
711 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64.dat s390-linux64.c
712 s390-linux64v1.o : s390-linux64v1.c $(regdef_h)
713 s390-linux64v1.c : $(srcdir)/../regformats/s390-linux64v1.dat $(regdat_sh)
714 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v1.dat s390-linux64v1.c
715 s390-linux64v2.o : s390-linux64v2.c $(regdef_h)
716 s390-linux64v2.c : $(srcdir)/../regformats/s390-linux64v2.dat $(regdat_sh)
717 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390-linux64v2.dat s390-linux64v2.c
718 s390x-linux64.o : s390x-linux64.c $(regdef_h)
719 s390x-linux64.c : $(srcdir)/../regformats/s390x-linux64.dat $(regdat_sh)
720 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64.dat s390x-linux64.c
721 s390x-linux64v1.o : s390x-linux64v1.c $(regdef_h)
722 s390x-linux64v1.c : $(srcdir)/../regformats/s390x-linux64v1.dat $(regdat_sh)
723 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v1.dat s390x-linux64v1.c
724 s390x-linux64v2.o : s390x-linux64v2.c $(regdef_h)
725 s390x-linux64v2.c : $(srcdir)/../regformats/s390x-linux64v2.dat $(regdat_sh)
726 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/s390x-linux64v2.dat s390x-linux64v2.c
727
728 tic6x-c64xp-linux.o : tic6x-c64xp-linux.c $(regdef_h)
729 tic6x-c64xp-linux.c : $(srcdir)/../regformats/tic6x-c64xp-linux.dat $(regdat_sh)
730 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64xp-linux.dat tic6x-c64xp-linux.c
731 tic6x-c64x-linux.o : tic6x-c64x-linux.c $(regdef_h)
732 tic6x-c64x-linux.c : $(srcdir)/../regformats/tic6x-c64x-linux.dat $(regdat_sh)
733 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c64x-linux.dat tic6x-c64x-linux.c
734 tic6x-c62x-linux.o : tic6x-c62x-linux.c $(regdef_h)
735 tic6x-c62x-linux.c : $(srcdir)/../regformats/tic6x-c62x-linux.dat $(regdat_sh)
736 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/tic6x-c62x-linux.dat tic6x-c62x-linux.c
737
738 reg-sh.o : reg-sh.c $(regdef_h)
739 reg-sh.c : $(srcdir)/../regformats/reg-sh.dat $(regdat_sh)
740 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sh.dat reg-sh.c
741 reg-sparc64.o : reg-sparc64.c $(regdef_h)
742 reg-sparc64.c : $(srcdir)/../regformats/reg-sparc64.dat $(regdat_sh)
743 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-sparc64.dat reg-sparc64.c
744 reg-spu.o : reg-spu.c $(regdef_h)
745 reg-spu.c : $(srcdir)/../regformats/reg-spu.dat $(regdat_sh)
746 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-spu.dat reg-spu.c
747 amd64.o : amd64.c $(regdef_h)
748 amd64.c : $(srcdir)/../regformats/i386/amd64.dat $(regdat_sh)
749 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64.dat amd64.c
750 amd64-linux.o : amd64-linux.c $(regdef_h)
751 amd64-linux.c : $(srcdir)/../regformats/i386/amd64-linux.dat $(regdat_sh)
752 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-linux.dat amd64-linux.c
753 amd64-avx.o : amd64-avx.c $(regdef_h)
754 amd64-avx.c : $(srcdir)/../regformats/i386/amd64-avx.dat $(regdat_sh)
755 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx.dat amd64-avx.c
756 amd64-avx-linux.o : amd64-avx-linux.c $(regdef_h)
757 amd64-avx-linux.c : $(srcdir)/../regformats/i386/amd64-avx-linux.dat $(regdat_sh)
758 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/amd64-avx-linux.dat amd64-avx-linux.c
759 x32.o : x32.c $(regdef_h)
760 x32.c : $(srcdir)/../regformats/i386/x32.dat $(regdat_sh)
761 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32.dat x32.c
762 x32-linux.o : x32-linux.c $(regdef_h)
763 x32-linux.c : $(srcdir)/../regformats/i386/x32-linux.dat $(regdat_sh)
764 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-linux.dat x32-linux.c
765 x32-avx.o : x32-avx.c $(regdef_h)
766 x32-avx.c : $(srcdir)/../regformats/i386/x32-avx.dat $(regdat_sh)
767 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx.dat x32-avx.c
768 x32-avx-linux.o : x32-avx-linux.c $(regdef_h)
769 x32-avx-linux.c : $(srcdir)/../regformats/i386/x32-avx-linux.dat $(regdat_sh)
770 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/i386/x32-avx-linux.dat x32-avx-linux.c
771 reg-xtensa.o : reg-xtensa.c $(regdef_h)
772 reg-xtensa.c : $(srcdir)/../regformats/reg-xtensa.dat $(regdat_sh)
773 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-xtensa.dat reg-xtensa.c
774 reg-tilegx.o : reg-tilegx.c $(regdef_h)
775 reg-tilegx.c : $(srcdir)/../regformats/reg-tilegx.dat $(regdat_sh)
776 $(SHELL) $(regdat_sh) $(srcdir)/../regformats/reg-tilegx.dat reg-tilegx.c
777 # This is the end of "Makefile.in".
This page took 0.045661 seconds and 5 git commands to generate.