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