]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/Makefile.in
GDBserver self tests
[thirdparty/binutils-gdb.git] / gdb / gdbserver / Makefile.in
CommitLineData
61baf725 1# Copyright (C) 1989-2017 Free Software Foundation, Inc.
c906108c
SS
2
3# This file is part of GDB.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
32de4b9d 7# the Free Software Foundation; either version 3 of the License, or
c906108c 8# (at your option) any later version.
1b3f6016 9#
c906108c
SS
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
1b3f6016 14#
c906108c 15# You should have received a copy of the GNU General Public License
32de4b9d 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 17
b593ecca
SM
18# Please keep lists in this file sorted alphabetically, with one item per line.
19# See gdb/Makefile.in for guidelines on ordering files and directories.
20
d6e9fb05
JK
21prefix = @prefix@
22exec_prefix = @exec_prefix@
c906108c 23
bd885420
YQ
24host_alias = @host_noncanonical@
25target_alias = @target_noncanonical@
d6e9fb05
JK
26program_transform_name = @program_transform_name@
27bindir = @bindir@
28libdir = @libdir@
c906108c
SS
29tooldir = $(libdir)/$(target_alias)
30
96e946ca 31datarootdir = @datarootdir@
d6e9fb05
JK
32datadir = @datadir@
33mandir = @mandir@
c906108c
SS
34man1dir = $(mandir)/man1
35man2dir = $(mandir)/man2
36man3dir = $(mandir)/man3
37man4dir = $(mandir)/man4
38man5dir = $(mandir)/man5
39man6dir = $(mandir)/man6
40man7dir = $(mandir)/man7
41man8dir = $(mandir)/man8
42man9dir = $(mandir)/man9
d6e9fb05 43infodir = @infodir@
085dd6e6 44htmldir = $(prefix)/html
d6e9fb05 45includedir = @includedir@
c906108c 46
a8347a2a 47SHELL = @SHELL@
de7c3b4a 48EXEEXT = @EXEEXT@
c906108c 49
d6e9fb05
JK
50INSTALL = @INSTALL@
51INSTALL_PROGRAM = @INSTALL_PROGRAM@
52INSTALL_DATA = @INSTALL_DATA@
c9a1864a 53RANLIB = @RANLIB@
c906108c 54
84563040 55CC = @CC@
3bc3d82a 56CXX = @CXX@
8629c02c 57CXX_DIALECT = @CXX_DIALECT@
e1d2394b
MS
58AR = @AR@
59AR_FLAGS = rc
c906108c 60
61c125b9
TT
61# Dependency tracking information.
62DEPMODE = @CCDEPMODE@
63DEPDIR = @DEPDIR@
64depcomp = $(SHELL) $(srcdir)/../depcomp
65
66# Note that these are overridden by GNU make-specific code below if
67# GNU make is used. The overrides implement dependency tracking.
cf0dd6f0 68COMPILE.pre = $(CXX) -x c++ $(CXX_DIALECT)
61c125b9
TT
69COMPILE.post = -c -o $@
70COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
71POSTCOMPILE = @true
72
c906108c
SS
73# Directory containing source files. Don't clean up the spacing,
74# this exact string is matched for by the "configure" script.
d6e9fb05 75srcdir = @srcdir@
8629c02c
SM
76abs_top_srcdir = @abs_top_srcdir@
77abs_srcdir = @abs_srcdir@
d6e9fb05 78VPATH = @srcdir@
c906108c
SS
79
80# It is also possible that you will need to add -I/usr/include/sys to the
1b3f6016 81# CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
c906108c
SS
82# is where it should be according to Posix).
83
84# Set this up with gcc if you have gnu ld and the loader will print out
85# line numbers for undefinded refs.
8629c02c
SM
86#CC_LD = g++ -static
87CC_LD = $(CXX) $(CXX_DIALECT)
c906108c
SS
88
89# Where is the "include" directory? Traditionally ../include or ./include
8629c02c 90INCLUDE_DIR = ${srcdir}/../../include
c906108c
SS
91INCLUDE_DEP = $$(INCLUDE_DIR)
92
0b04e523
TT
93LIBIBERTY_BUILDDIR = build-libiberty-gdbserver
94LIBIBERTY = $(LIBIBERTY_BUILDDIR)/libiberty.a
95
0fb4aa4b
PA
96# Where is ust? These will be empty if ust was not available.
97ustlibs = @ustlibs@
98ustinc = @ustinc@
99
c9a1864a 100# gnulib
c971b7fa
PA
101GNULIB_BUILDDIR = build-gnulib-gdbserver
102LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
103INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
ecedbe58 104
c9a1864a
YQ
105# Generated headers in the gnulib directory. These must be listed
106# so that they are generated before other files are compiled.
c971b7fa 107GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
c9a1864a 108
c906108c
SS
109# All the includes used for CFLAGS and for lint.
110# -I. for config files.
7ea81414
DJ
111# -I${srcdir} for our headers.
112# -I$(srcdir)/../regformats for regdef.h.
96d7229d
LM
113#
114# We do not include ../target or ../nat in here because headers
115# in those directories should be included with the subdirectory.
116# e.g.: "target/wait.h".
117#
2aecd87f 118INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \
66af0f44 119 -I$(srcdir)/../regformats -I$(srcdir)/.. -I$(INCLUDE_DIR) \
57c4b50b 120 $(INCGNU)
c906108c
SS
121
122# M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
123# from the config/ directory.
124GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
125#PROFILE_CFLAGS = -pg
126
d4596a3d
PA
127WARN_CFLAGS = @WARN_CFLAGS@
128WERROR_CFLAGS = @WERROR_CFLAGS@
0729219d 129
d3ce09f5
SS
130WARN_CFLAGS_NO_FORMAT = `echo " $(WARN_CFLAGS) " \
131 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
132
a994041d 133# These are specifically reserved for setting from the command line
c906108c 134# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
84563040 135CFLAGS = @CFLAGS@
a994041d 136CXXFLAGS = @CXXFLAGS@
bffc0964 137CPPFLAGS = @CPPFLAGS@
84563040 138
c906108c 139# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
8629c02c 140INTERNAL_CFLAGS_BASE = ${CXXFLAGS} ${GLOBAL_CFLAGS} \
bffc0964 141 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${CPPFLAGS}
8629c02c
SM
142INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS)
143INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER
c906108c
SS
144
145# LDFLAGS is specifically reserved for setting from the command line
146# when running make.
697f7479 147LDFLAGS = @LDFLAGS@
f6de3c42 148INTERNAL_LDFLAGS = $(LDFLAGS) @RDYNAMIC@
c906108c 149
c906108c
SS
150# All source files that go into linking GDB remote server.
151
b593ecca
SM
152SFILES = \
153 $(srcdir)/debug.c \
154 $(srcdir)/dll.c \
155 $(srcdir)/gdbreplay.c \
156 $(srcdir)/hostio.c \
157 $(srcdir)/hostio-errno.c \
158 $(srcdir)/i387-fp.c \
159 $(srcdir)/inferiors.c \
98fc70d6 160 $(srcdir)/linux-aarch64-low.c \
b593ecca
SM
161 $(srcdir)/linux-arm-low.c \
162 $(srcdir)/linux-bfin-low.c \
163 $(srcdir)/linux-cris-low.c \
164 $(srcdir)/linux-crisv32-low.c \
165 $(srcdir)/linux-ia64-low.c \
166 $(srcdir)/linux-low.c \
7cfbc4a0 167 $(srcdir)/linux-m32r-low.c \
b593ecca
SM
168 $(srcdir)/linux-m68k-low.c \
169 $(srcdir)/linux-mips-low.c \
68f5f838 170 $(srcdir)/linux-nios2-low.c \
b593ecca 171 $(srcdir)/linux-ppc-low.c \
eee84df1 172 $(srcdir)/linux-s390-low.c \
b593ecca
SM
173 $(srcdir)/linux-sh-low.c \
174 $(srcdir)/linux-sparc-low.c \
175 $(srcdir)/linux-tile-low.c \
d0722149 176 $(srcdir)/linux-x86-low.c \
1525d545 177 $(srcdir)/linux-xtensa-low.c \
b593ecca
SM
178 $(srcdir)/mem-break.c \
179 $(srcdir)/proc-service.c \
180 $(srcdir)/proc-service.list \
181 $(srcdir)/regcache.c \
182 $(srcdir)/remote-utils.c \
183 $(srcdir)/server.c \
184 $(srcdir)/symbol.c \
185 $(srcdir)/target.c \
186 $(srcdir)/thread-db.c \
187 $(srcdir)/utils.c \
188 $(srcdir)/win32-arm-low.c \
189 $(srcdir)/win32-i386-low.c \
190 $(srcdir)/win32-low.c \
191 $(srcdir)/wincecompat.c \
192 $(srcdir)/x86-low.c \
193 $(srcdir)/arch/arm.c \
194 $(srcdir)/arch/arm-get-next-pcs.c \
195 $(srcdir)/arch/arm-linux.c \
791c0056 196 $(srcdir)/common/btrace-common.c \
b593ecca
SM
197 $(srcdir)/common/buffer.c \
198 $(srcdir)/common/cleanups.c \
199 $(srcdir)/common/common-debug.c \
200 $(srcdir)/common/common-exceptions.c \
201 $(srcdir)/common/common-regcache.c \
202 $(srcdir)/common/common-utils.c \
203 $(srcdir)/common/errors.c \
1672e0d9 204 $(srcdir)/common/environ.c \
b593ecca
SM
205 $(srcdir)/common/fileio.c \
206 $(srcdir)/common/filestuff.c \
15652511 207 $(srcdir)/common/job-control.c \
b593ecca
SM
208 $(srcdir)/common/gdb_vecs.c \
209 $(srcdir)/common/new-op.c \
210 $(srcdir)/common/print-utils.c \
211 $(srcdir)/common/ptid.c \
212 $(srcdir)/common/rsp-low.c \
213 $(srcdir)/common/vec.c \
214 $(srcdir)/common/xml-utils.c \
215 $(srcdir)/nat/linux-btrace.c \
216 $(srcdir)/nat/linux-namespaces.c \
217 $(srcdir)/nat/linux-osdata.c \
218 $(srcdir)/nat/linux-personality.c \
219 $(srcdir)/nat/mips-linux-watch.c \
220 $(srcdir)/nat/ppc-linux.c \
2090129c 221 $(srcdir)/nat/fork-inferior.c \
b593ecca 222 $(srcdir)/target/waitstatus.c
c906108c 223
7ea81414 224DEPFILES = @GDBSERVER_DEPFILES@
c906108c 225
e28b3332
DJ
226LIBOBJS = @LIBOBJS@
227
7ea81414 228SOURCES = $(SFILES)
1b3f6016 229TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
c906108c 230
b593ecca
SM
231OBS = \
232 agent.o \
233 ax.o \
234 btrace-common.o \
235 buffer.o \
236 cleanups.o \
237 common-debug.o \
238 common-exceptions.o \
15652511 239 job-control.o \
b593ecca
SM
240 common-regcache.o \
241 common-utils.o \
242 debug.o \
243 dll.o \
244 errors.o \
1672e0d9 245 environ.o \
b593ecca
SM
246 event-loop.o \
247 fileio.o \
248 filestuff.o \
249 format.o \
250 gdb_vecs.o \
251 hostio.o \
252 inferiors.o \
253 mem-break.o \
254 new-op.o \
255 notif.o \
256 print-utils.o \
257 ptid.o \
258 regcache.o \
259 remote-utils.o \
260 rsp-low.o \
6d580b63 261 selftest.o \
b593ecca
SM
262 server.o \
263 signals.o \
264 signals-state-save-restore.o \
265 symbol.o \
266 target.o \
267 tdesc.o \
268 tracepoint.o \
269 utils.o \
270 vec.o \
271 version.o \
272 waitstatus.o \
273 xml-utils.o \
274 $(DEPFILES) \
275 $(LIBOBJS) \
276 $(XML_BUILTIN)
277
a417dc56 278GDBREPLAY_OBS = gdbreplay.o version.o
0d62e5e8 279GDBSERVER_LIBS = @GDBSERVER_LIBS@
b80864fb 280XM_CLIBS = @LIBS@
f6528abd 281CDEPS = $(srcdir)/proc-service.list
c906108c 282
fb1e4ffc
DJ
283# XML files to compile in to gdbserver, if any.
284XML_DIR = $(srcdir)/../features
fb1e4ffc
DJ
285XML_FILES = @srv_xmlfiles@
286XML_BUILTIN = @srv_xmlbuiltin@
287
fa593d66
PA
288IPA_DEPFILES = @IPA_DEPFILES@
289extra_libraries = @extra_libraries@
290
0b04e523 291SUBDIRS = $(GNULIB_BUILDDIR) $(LIBIBERTY_BUILDDIR)
c971b7fa
PA
292CLEANDIRS = $(SUBDIRS)
293
294# List of subdirectories in the build tree that must exist.
295# This is used to force build failures in existing trees when
296# a new directory is added.
297# The format here is for the `case' shell command.
0b04e523 298REQUIRED_SUBDIRS = $(GNULIB_BUILDDIR) | $(LIBIBERTY_BUILDDIR)
c971b7fa 299
f474844c
JZ
300FLAGS_TO_PASS = \
301 "prefix=$(prefix)" \
302 "exec_prefix=$(exec_prefix)" \
303 "infodir=$(infodir)" \
304 "datarootdir=$(datarootdir)" \
305 "docdir=$(docdir)" \
306 "htmldir=$(htmldir)" \
307 "pdfdir=$(pdfdir)" \
308 "libdir=$(libdir)" \
309 "mandir=$(mandir)" \
310 "datadir=$(datadir)" \
311 "includedir=$(includedir)" \
312 "against=$(against)" \
313 "DESTDIR=$(DESTDIR)" \
314 "AR=$(AR)" \
315 "AR_FLAGS=$(AR_FLAGS)" \
316 "CC=$(CC)" \
317 "CFLAGS=$(CFLAGS)" \
318 "CXX=$(CXX)" \
319 "CXXFLAGS=$(CXXFLAGS)" \
320 "DLLTOOL=$(DLLTOOL)" \
321 "LDFLAGS=$(LDFLAGS)" \
322 "RANLIB=$(RANLIB)" \
323 "MAKEINFO=$(MAKEINFO)" \
324 "MAKEHTML=$(MAKEHTML)" \
325 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
326 "INSTALL=$(INSTALL)" \
327 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
328 "INSTALL_DATA=$(INSTALL_DATA)" \
329 "RUNTEST=$(RUNTEST)" \
330 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
331
fd9bb8b8
PA
332# All generated files which can be included by another file.
333generated_files = config.h $(GNULIB_H)
334
fa593d66 335all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries)
c971b7fa 336 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
337
338# Traditionally "install" depends on "all". But it may be useful
1b3f6016 339# not to; for example, if the user has made some trivial change to a
c906108c
SS
340# source file and doesn't care about rebuilding or just wants to save the
341# time it takes for make to check that all is up to date.
342# install-only is intended to address that need.
f474844c
JZ
343install: all
344 @$(MAKE) $(FLAGS_TO_PASS) install-only
345
1b3f6016 346install-only:
c906108c
SS
347 n=`echo gdbserver | sed '$(program_transform_name)'`; \
348 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
12ac6819 349 if [ x"$(IPA_DEPFILES)" != x ]; then \
fa593d66
PA
350 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
351 $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
352 fi; \
c938e9b0 353 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
480b27bf 354 $(INSTALL_PROGRAM) gdbserver$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
0b04e523
TT
355 # Note that we run install and not install-only, as the latter
356 # is not part of GNU standards and in particular not provided
357 # in libiberty.
358 @$(MAKE) $(FLAGS_TO_PASS) DO=install "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
359
360uninstall: force
361 n=`echo gdbserver | sed '$(program_transform_name)'`; \
362 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
f1048712 363 rm -f $(DESTDIR)/$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(man1dir)/$$n.1
c971b7fa 364 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c
SS
365
366installcheck:
367check:
9453113a 368info dvi pdf:
c906108c 369install-info:
9453113a 370install-pdf:
085dd6e6
JM
371html:
372install-html:
c9a1864a 373clean-info: force
c971b7fa 374 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c 375
0b04e523 376gdbserver$(EXEEXT): $(OBS) ${ADD_DEPS} ${CDEPS} $(LIBGNU) $(LIBIBERTY)
68070c10 377 rm -f gdbserver$(EXEEXT)
3bc3d82a 378 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbserver$(EXEEXT) $(OBS) \
0b04e523 379 $(LIBGNU) $(LIBIBERTY) $(GDBSERVER_LIBS) $(XM_CLIBS)
c9a1864a 380
0b04e523
TT
381$(LIBGNU) $(LIBIBERTY) $(GNULIB_H): all-lib
382all-lib: $(GNULIB_BUILDDIR)/Makefile $(LIBIBERTY_BUILDDIR)/Makefile
383 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS="$(SUBDIRS)" subdir_do
c9a1864a 384.PHONY: all-lib
c906108c 385
0b04e523 386gdbreplay$(EXEEXT): $(GDBREPLAY_OBS) $(LIBGNU) $(LIBIBERTY)
68070c10 387 rm -f gdbreplay$(EXEEXT)
3bc3d82a 388 $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \
0b04e523 389 $(XM_CLIBS) $(LIBGNU) $(LIBIBERTY)
c906108c 390
a206891a
SM
391IPA_OBJS = \
392 ax-ipa.o \
393 common-utils-ipa.o \
394 errors-ipa.o \
395 format-ipa.o \
396 print-utils-ipa.o \
397 regcache-ipa.o \
398 remote-utils-ipa.o \
399 rsp-low-ipa.o \
400 tdesc-ipa.o \
401 tracepoint-ipa.o \
402 utils-ipa.o \
ef87c8bb 403 ${IPA_DEPFILES}
fa593d66 404
8629c02c 405IPA_LIB = libinproctrace.so
fa593d66
PA
406
407$(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS}
408 rm -f $(IPA_LIB)
6e774b13 409 $(CC_LD) -shared -fPIC -Wl,--soname=$(IPA_LIB) -Wl,--no-undefined $(INTERNAL_CFLAGS) \
0fb4aa4b 410 $(INTERNAL_LDFLAGS) -o $(IPA_LIB) ${IPA_OBJS} -ldl -pthread
fa593d66 411
c906108c
SS
412# Put the proper machine-specific files first, so M-. on a machine
413# specific routine gets the one for the correct machine.
414# The xyzzy stuff below deals with empty DEPFILES
415TAGS: ${TAGFILES}
2c0fc042 416 etags `find ${srcdir}/../config -name $(DEPRECATED_TM_FILE) -print` \
c906108c
SS
417 `find ${srcdir}/../config -name ${XM_FILE} -print` \
418 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
419 `for i in yzzy ${DEPFILES}; do \
420 if [ x$$i != xyzzy ]; then \
421 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
422 fi; \
423 done` \
424 ${TAGFILES}
425tags: TAGS
426
427clean:
428 rm -f *.o ${ADD_FILES} *~
de7c3b4a 429 rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log
fa593d66 430 rm -f $(IPA_LIB)
8fa5b777
SM
431 rm -f *-generated.c
432 rm -f stamp-xml
65dd1e59 433 rm -f $(DEPDIR)/*.Po
c971b7fa 434 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
c906108c 435
a59d1c82 436maintainer-clean realclean distclean: clean
c971b7fa
PA
437 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
438 rm -rf $(GNULIB_BUILDDIR)
439 rm -f Makefile config.status config.h stamp-h config.log
440 rm -f Makefile
441
442subdir_do: force
443 @for i in $(DODIRS); do \
444 case $$i in \
445 $(REQUIRED_SUBDIRS)) \
446 if [ ! -f ./$$i/Makefile ] ; then \
447 echo "Missing $$i/Makefile" >&2 ; \
448 exit 1 ; \
449 fi ;; \
450 esac ; \
451 if [ -f ./$$i/Makefile ] ; then \
452 if (cd ./$$i; \
453 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
454 else exit 1 ; fi ; \
455 else true ; fi ; \
456 done
c906108c 457
c3a3ccc7
DJ
458config.h: stamp-h ; @true
459stamp-h: config.in config.status
e0e76420 460 CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
0729219d 461
7ea81414 462Makefile: Makefile.in config.status
0729219d 463 CONFIG_HEADERS="" $(SHELL) ./config.status
c906108c 464
c971b7fa
PA
465$(GNULIB_BUILDDIR)/Makefile: $(srcdir)/../gnulib/Makefile.in config.status
466 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
c9a1864a
YQ
467 CONFIG_COMMANDS="depfiles" \
468 CONFIG_HEADERS= \
469 CONFIG_LINKS= \
c971b7fa 470 $(SHELL) config.status
c9a1864a 471
270c9937 472config.status: configure configure.srv $(srcdir)/../../bfd/development.sh
d6e9fb05
JK
473 $(SHELL) ./config.status --recheck
474
c9a1864a
YQ
475# automatic rebuilding in automake-generated Makefiles requires
476# this rule in the toplevel Makefile, which, with GNU make, causes
477# the desired updates through the implicit regeneration of the Makefile
478# and all of its prerequisites.
479am--refresh:
480 @:
481
c906108c
SS
482force:
483
8fa5b777 484version-generated.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh
01208463 485 $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \
8fa5b777 486 $(host_alias) $(target_alias) $@
c906108c 487
8fa5b777 488xml-builtin-generated.c: stamp-xml; @true
fb1e4ffc
DJ
489stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES)
490 rm -f xml-builtin.tmp
491 $(SHELL) $(XML_DIR)/feature_to_c.sh xml-builtin.tmp $(XML_FILES)
8fa5b777 492 $(SHELL) $(srcdir)/../../move-if-change xml-builtin.tmp xml-builtin-generated.c
fb1e4ffc
DJ
493 echo stamp > stamp-xml
494
9b4b61c8 495.PRECIOUS: xml-builtin.c
fb1e4ffc 496
c906108c
SS
497# GNU Make has an annoying habit of putting *all* the Makefile variables
498# into the environment, unless you include this target as a circumvention.
499# Rumor is that this will be fixed (and this target can be removed)
500# in GNU Make 4.0.
501.NOEXPORT:
502
503# GNU Make 3.63 has a different problem: it keeps tacking command line
504# overrides onto the definition of $(MAKE). This variable setting
505# will remove them.
8629c02c 506MAKEOVERRIDES =
c906108c 507
0c74b2a7 508regdat_sh = $(srcdir)/../regformats/regdat.sh
7a60ad40 509
0fb4aa4b
PA
510UST_CFLAGS = $(ustinc) -DCONFIG_UST_GDB_INTEGRATION
511
fa593d66
PA
512# Note, we only build the IPA if -fvisibility=hidden is supported in
513# the first place.
bffc0964 514IPAGENT_CFLAGS = $(INTERNAL_CFLAGS) $(UST_CFLAGS) \
3ba6ad0f 515 -fPIC -DIN_PROCESS_AGENT \
fa593d66
PA
516 -fvisibility=hidden
517
61c125b9
TT
518IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post)
519
1a01e7c6
SM
520# Rules for special cases.
521
61c125b9
TT
522ax-ipa.o: ax.c
523 $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
524 $(POSTCOMPILE)
61c125b9
TT
525
526ax.o: ax.c
527 $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
528 $(POSTCOMPILE)
529
a8ebe3d5
SM
530# Rules for objects that go in the in-process agent.
531
8fa5b777
SM
532%-ipa.o: %-generated.c
533 $(IPAGENT_COMPILE) $<
534 $(POSTCOMPILE)
535
a8ebe3d5
SM
536%-ipa.o: %.c
537 $(IPAGENT_COMPILE) $<
538 $(POSTCOMPILE)
539
1a01e7c6
SM
540# Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one.
541# Therefore, this one needs to be before "%.o: %.c" for it to be considered for
542# files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c.
543#
544# Later versions of GNU Make choose the rule with the shortest stem, so it would
545# work in any order.
546
547%-ipa.o: %-ipa.c
548 $(IPAGENT_COMPILE) $<
549 $(POSTCOMPILE)
550
36bc18a8
SM
551%-ipa.o: ../common/%.c
552 $(IPAGENT_COMPILE) $<
553 $(POSTCOMPILE)
554
50cfacb7 555# Rules for objects that go in the gdbserver binary.
787749ea 556
8fa5b777
SM
557%.o: %-generated.c
558 $(COMPILE) $<
559 $(POSTCOMPILE)
560
50cfacb7 561%.o: %.c
787749ea
PL
562 $(COMPILE) $<
563 $(POSTCOMPILE)
564
50cfacb7 565%.o: ../arch/%.c
21122961
SM
566 $(COMPILE) $<
567 $(POSTCOMPILE)
568
6bda016b
SM
569%.o: ../common/%.c
570 $(COMPILE) $<
571 $(POSTCOMPILE)
572
c5a22423
SM
573%.o: ../nat/%.c
574 $(COMPILE) $<
575 $(POSTCOMPILE)
576
21122961
SM
577%.o: ../target/%.c
578 $(COMPILE) $<
579 $(POSTCOMPILE)
580
8fa5b777
SM
581# Rules for register format descriptions. Suffix destination files with
582# -generated to identify and clean them easily.
c362e621 583
8fa5b777 584%-generated.c: ../regformats/%.dat | $(regdat_sh)
c362e621
SM
585 $(SHELL) $(regdat_sh) $< $@
586
8fa5b777 587%-generated.c: ../regformats/arm/%.dat | $(regdat_sh)
c362e621
SM
588 $(SHELL) $(regdat_sh) $< $@
589
8fa5b777 590%-generated.c: ../regformats/i386/%.dat | $(regdat_sh)
c362e621
SM
591 $(SHELL) $(regdat_sh) $< $@
592
8fa5b777 593%-generated.c: ../regformats/rs6000/%.dat | $(regdat_sh)
c362e621 594 $(SHELL) $(regdat_sh) $< $@
61c125b9
TT
595
596#
3b165252 597# Dependency tracking.
61c125b9
TT
598#
599
3b165252 600ifeq ($(DEPMODE),depmode=gcc3)
61c125b9
TT
601# Note that we put the dependencies into a .Tpo file, then move them
602# into place if the compile succeeds. We need this because gcc does
603# not atomically write the dependency output file.
3b165252
SM
604override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
605 -MF $(DEPDIR)/$(basename $(@F)).Tpo
606override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
607 $(DEPDIR)/$(basename $(@F)).Po
608else
609override COMPILE.pre = source='$<' object='$@' libtool=no \
610 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
61c125b9
TT
611# depcomp handles atomicity for us, so we don't need a postcompile
612# step.
3b165252
SM
613override POSTCOMPILE =
614endif
61c125b9
TT
615
616# A list of all the objects we might care about in this build, for
617# dependency tracking.
1798301e 618all_object_files = $(OBS) $(GDBREPLAY_OBS) $(IPA_OBJS)
61c125b9
TT
619
620# Ensure that generated files are created early. Use order-only
621# dependencies if available. They require GNU make 3.80 or newer,
622# and the .VARIABLES variable was introduced at the same time.
3b165252
SM
623ifdef .VARIABLES
624$(all_object_files): | $(generated_files)
625else
61c125b9 626$(all_object_files) : $(generated_files)
3b165252 627endif
61c125b9
TT
628
629# Dependencies.
3b165252 630-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
61c125b9 631
ad02e4fe
SM
632# Disable implicit make rules.
633include $(srcdir)/../disable-implicit-rules.mk
634
c906108c 635# This is the end of "Makefile.in".