* Makefile.in (ALL_CFLAGS): Add -D_GNU_SOURCE.
[deliverable/binutils-gdb.git] / binutils / Makefile.in
CommitLineData
d8474a9b 1# Makefile for GNU binary-file utilities
f5167986 2# Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
d8474a9b
PB
3
4# This file is part of GNU binutils.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
125a4b58 18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
99a42820 19
5ab6ca68
ILT
20VPATH = @srcdir@
21srcdir = @srcdir@
84396dcf 22
5ab6ca68
ILT
23target_alias = @target_alias@
24prefix = @prefix@
d8e89b6b 25
5ab6ca68
ILT
26program_transform_name = @program_transform_name@
27exec_prefix = @exec_prefix@
7f924d55
ILT
28bindir = @bindir@
29libdir = @libdir@
f6dddd4e 30tooldir = $(exec_prefix)/$(target_alias)
d8e89b6b 31
7f924d55
ILT
32datadir = @datadir@
33mandir = @mandir@
d8e89b6b
RP
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
7f924d55
ILT
43infodir = @infodir@
44includedir = @includedir@
84396dcf
RP
45
46SHELL = /bin/sh
d8e89b6b 47
5ebaf24b 48INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
7f924d55
ILT
49INSTALL_PROGRAM = @INSTALL_PROGRAM@
50INSTALL_DATA = @INSTALL_DATA@
29078b29 51INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
fca4042a 52INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1 -m 644
d8e89b6b
RP
53
54AR = ar
109eb06c
ILT
55AR_FLAGS = rc
56CC = @CC@
57CFLAGS = @CFLAGS@
58LDFLAGS = @LDFLAGS@
36fb98be 59HLDFLAGS = @HLDFLAGS@
7f924d55 60HLDENV = @HLDENV@
efa86453 61RPATH_ENVVAR = @RPATH_ENVVAR@
d8e89b6b 62MAKEINFO = makeinfo
c921e2aa 63TEXI2DVI = texi2dvi
d8e89b6b 64RANLIB = ranlib
9752f9fd 65BISONFLAGS = -d
c83497f5 66TEXI2ROFF=texi2roff
29078b29 67MAKEOVERRIDES=
fca4042a 68CC_FOR_BUILD = @CC_FOR_BUILD@
f50af42b
KR
69NM_FOR_TARGET = nm
70NM = $(NM_FOR_TARGET)
8d5d0e11
PB
71SYMLINK = ln -s
72
e52e2acd 73BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
6ded6615 74LEX_OPTIONS =
e2fe2df4 75LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
45212e5e 76
8539db10 77# Distribution version
7f924d55 78VERSION=cygnus-2.7.1
8539db10 79# Distribution name
d8e89b6b 80DIST_NAME=binutils-${VERSION}
8539db10 81
6b583720 82# Where to find texinfo.tex to format docn with TeX
94333f27 83TEXIDIR = $(srcdir)/../texinfo
b7a11ec2 84
06a97fbd 85# these two are almost the same program
a10d26a1
RP
86AR_PROG=ar
87RANLIB_PROG=ranlib
99a42820 88
df14d957
ILT
89# objcopy and strip should be the same program
90OBJCOPY_PROG=objcopy
06459c06 91STRIP_PROG=strip.new
99a42820 92
4f15fb27
DM
93STRINGS_PROG=strings
94
99a42820 95# These should all be the same program too.
a10d26a1 96SIZE_PROG=size
06459c06 97NM_PROG=nm.new
a10d26a1 98OBJDUMP_PROG=objdump
99a42820 99
c921e2aa 100# This is the demangler, as a standalone program.
c06e55d9 101# Note: This one is used as the installed name too, unlike the above.
df14d957 102DEMANGLER_PROG=c++filt
c921e2aa 103
29078b29 104NLMCONV_PROG=nlmconv
125a4b58 105DLLTOOL_PROG=dlltool
29078b29 106
c06e55d9
KR
107SRCONV_PROG=srconv sysdump coffdump
108
1cf8bd3f 109MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
e52e2acd 110
5ab6ca68 111PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@
a01bf1fb 112STAGESTUFF = $(PROGS) *.o
8d5d0e11 113# Files that can be generated, but should be in the distribution.
125a4b58
SC
114# Don't build $(DEMANGLER_PROG).1, since its name may vary with the
115# configuration.
7f924d55
ILT
116DISTSTUFF=arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
117 syslex.c deflex.c
99a42820 118
b5775df3 119# Stuff that goes in tooldir/ if appropriate
be92df36 120TOOL_PROGS = nm.new strip.new ar ranlib $(DLLTOOL_PROG)
b5775df3 121
40773f7f 122BASEDIR = $(srcdir)/..
bba04d93
DM
123BFDDIR = $(BASEDIR)/bfd
124INCDIR = $(BASEDIR)/include
125INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
f5167986 126DEP = mkdep
a10d26a1 127
6ded6615 128ALL_CFLAGS = -D_GNU_SOURCE $(INCLUDES) @HDEFINES@ $(CFLAGS)
37853673 129
f5167986
ILT
130HFILES = arsup.h bucomm.h budbg.h coffgrok.h debug.h nlmconv.h
131
132GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h
133
134CFILES = ar.c arsup.c bucomm.c coffdump.c coffgrok.c debug.c dlltool.c \
135 filemode.c ieee.c is-ranlib.c is-strip.c maybe-ranlib.c \
136 maybe-strip.c nlmconv.c nm.c not-ranlib.c not-strip.c \
f32fb3fd
ILT
137 objcopy.c objdump.c prdbg.c rdcoff.c rddbg.c size.c srconv.c \
138 stabs.c strings.c sysdump.c version.c wrstabs.c
f5167986
ILT
139
140GENERATED_CFILES = \
141 underscore.c arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
142 defparse.c deflex.c nlmheader.c
143
d8e89b6b 144.c.o:
37853673 145 $(CC) -c $(ALL_CFLAGS) $<
99a42820 146
f32fb3fd
ILT
147DEBUG_OBJS = rddbg.o debug.o stabs.o ieee.o rdcoff.o
148WRITE_DEBUG_OBJS = $(DEBUG_OBJS) wrstabs.o
5207a907 149
bba04d93 150LIBIBERTY = ../libiberty/libiberty.a
99a42820
RP
151
152# Code shared by all the binutils.
a10d26a1 153BULIBS = bucomm.o version.o filemode.o
99a42820 154
36fb98be
ILT
155BFDLIB_DEP = ../bfd/libbfd.a
156BFDLIB = @BFDLIB@
99a42820 157
36fb98be
ILT
158OPCODES_DEP = ../opcodes/libopcodes.a
159OPCODES = @OPCODES@
160
161ADDL_DEPS = $(BULIBS) $(BFDLIB_DEP) $(LIBIBERTY)
162ADDL_LIBS = $(BULIBS) $(BFDLIB) $(LIBIBERTY)
f6dddd4e 163
53e174d6
ILT
164EXPECT = `if [ -f $$r/../expect/expect ] ; then \
165 echo $$r/../expect/expect ; \
125a4b58
SC
166 else echo expect ; fi`
167RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
168 echo ${srcdir}/../dejagnu/runtest ; \
169 else echo runtest ; fi`
170RUNTESTFLAGS =
171
b218076e
KR
172CC_FOR_TARGET = ` \
173 if [ -f $$r/../gcc/xgcc ] ; then \
174 if [ -f $$r/../newlib/Makefile ] ; then \
175 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
176 else \
177 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
178 fi; \
179 else \
53e174d6 180 if [ "@host@" = "@target@" ] ; then \
b218076e
KR
181 echo $(CC); \
182 else \
183 echo gcc | sed '$(program_transform_name)'; \
184 fi; \
185 fi`
186
f6dddd4e 187FLAGS_TO_PASS = \
4447efa2
ILT
188 "CC=$(CC)" \
189 "CFLAGS=$(CFLAGS)" \
df14d957 190 "RUNTEST=$(RUNTEST)" \
e52e2acd 191 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
99a42820
RP
192#\f
193## The rules
194
36fb98be 195all: $(ADDL_DEPS) $(PROGS)
4f8b1219 196
5903dfae
ILT
197# These targets are for the dejagnu testsuites. The file site.exp
198# contains global variables that all the testsuites will use.
199
200site.exp: ./config.status Makefile
201 @echo "Making a new config file..."
202 @rm -f ./tmp?
203 @touch site.exp
204 @mv site.exp site.bak
205 @echo "## variables are automatically generated by make ##" > ./tmp0
206 @echo "# Do not edit here. If you wish to override these" >> ./tmp0
207 @echo "# values, add them to the last section" >> ./tmp0
208 @echo "# HOST AND TARGET INFO" >> ./tmp0
5ab6ca68
ILT
209 @echo "set host_os @host_os@" >> ./tmp0
210 @echo "set host_alias @host_alias@" >> ./tmp0
211 @echo "set host_cpu @host_cpu@" >> ./tmp0
212 @echo "set host_vendor @host_vendor@" >> ./tmp0
213 @echo "set target_os @target_os@" >> ./tmp0
214 @echo "set target_alias @target_alias@" >> ./tmp0
215 @echo "set target_cpu @target_cpu@" >> ./tmp0
216 @echo "set target_vendor @target_vendor@" >> ./tmp0
217 @echo "set host_triplet @host@" >> ./tmp0
218 @echo "set target_triplet @target@" >> ./tmp0
5903dfae
ILT
219 @echo "# DIRECTORY INFO" >> ./tmp0
220 @echo "set objdir `pwd`" >> ./tmp0
221 @echo "" >> ./tmp0
222 @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0
223 @cat ./tmp0 > site.exp
224 @cat site.bak | sed \
225 -e '1,/^## Variables generated by.*##/ d' >> site.exp
226 -@rm -f ./tmp?
227
228check: site.exp
53e174d6 229 r=`pwd`; export r ; \
5903dfae
ILT
230 srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
231 EXPECT=${EXPECT} ; export EXPECT ; \
efa86453
ILT
232 $(RPATH_ENVVAR)=$$r/../bfd:$$r/../opcodes:$$$(RPATH_ENVVAR); \
233 export $(RPATH_ENVVAR); \
53e174d6 234 if [ -f $$r/../expect/expect ] ; then \
5903dfae 235 TCL_LIBRARY=$${srcroot}/../tcl/library ; \
9b14c27a 236 export TCL_LIBRARY ; else true; fi ; \
5903dfae 237 $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
b218076e 238 $(RUNTESTFLAGS) CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)"
d8e89b6b 239
f7ed13c7 240installcheck:
7d6cc102
RP
241 /bin/sh $(srcdir)/sanity.sh $(bindir)
242
d8e89b6b 243info: binutils.info
a10d26a1 244
c921e2aa
FF
245dvi: binutils.dvi
246
36fb98be 247$(SIZE_PROG): $(ADDL_DEPS) size.o
7f924d55 248 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
99a42820 249
f32fb3fd 250$(OBJCOPY_PROG): $(ADDL_DEPS) objcopy.o not-strip.o $(WRITE_DEBUG_OBJS)
7f924d55 251 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(WRITE_DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
d8e89b6b 252
36fb98be 253$(STRINGS_PROG): $(ADDL_DEPS) strings.o
7f924d55 254 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
4f15fb27 255
f32fb3fd 256$(STRIP_PROG): $(ADDL_DEPS) objcopy.o is-strip.o $(WRITE_DEBUG_OBJS)
7f924d55 257 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(WRITE_DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
99a42820 258
36fb98be 259$(NM_PROG): $(ADDL_DEPS) nm.o
7f924d55 260 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
99a42820 261
f32fb3fd
ILT
262#libbfd is searched twice here ($(BFDLIB) and $(ADDL_LIBS)) because when a
263#shared libbfd is built with --enable-commonbfdlib, all of libopcodes is
264#available in libbfd.so and we don't want to link anything from libopcodes.a
36fb98be 265$(OBJDUMP_PROG): $(ADDL_DEPS) objdump.o prdbg.o $(DEBUG_OBJS) $(OPCODES_DEP)
7f924d55 266 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o prdbg.o $(DEBUG_OBJS) $(BFDLIB) $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
f5167986
ILT
267
268underscore.c: stamp-under ; @true
bba04d93 269
f5167986 270stamp-under: Makefile
6f88f031 271 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
5ab6ca68 272 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
f5167986
ILT
273 $(srcdir)/../move-if-change underscore.t underscore.c
274 touch stamp-under
f50af42b 275
3bbea7af 276version.o: version.c Makefile
5ab6ca68 277 $(CC) -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) -c $(srcdir)/version.c
bba04d93 278
6f88f031 279cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
5ab6ca68 280 $(CC) -c -DMAIN -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
f50af42b 281
293129ca 282$(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o $(DEMANGLER_PROG).1
7f924d55 283 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
c921e2aa 284
3bbea7af 285arparse.c: arparse.y
9752f9fd 286 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
3bbea7af
ILT
287 mv -f y.tab.c arparse.c
288 mv -f y.tab.h arparse.h
289
290# Separate from arparse.c so that a parallel make doesn't try to build
291# both arparse.c and arparse.h simultaneously.
292arparse.h: arparse.c
d8e89b6b 293
9752f9fd
ME
294arlex.c: arlex.l
295 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
296 mv lex.yy.c arlex.c
d8e89b6b 297
36fb98be 298$(AR_PROG): $(ADDL_DEPS) ar.o arparse.o arlex.o not-ranlib.o arsup.o
7f924d55 299 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
d8e89b6b 300
36fb98be 301$(RANLIB_PROG): $(ADDL_DEPS) ar.o is-ranlib.o arparse.o arlex.o arsup.o
7f924d55 302 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
06a97fbd
PB
303
304# This rule creates a single binary that switches between ar and ranlib
305# by looking at argv[0]. Use this kludge to save some disk space.
306# However, you have to install things by hand.
307# (That is after 'make install', replace the installed ranlib by a link to ar.)
308
309# Alternatively, you can install ranlib.sh as ranlib.
310
36fb98be 311ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
7f924d55 312 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
a10d26a1
RP
313 -rm -f $(RANLIB_PROG)
314 -ln $(AR_PROG) $(RANLIB_PROG)
99a42820 315
df14d957 316# objcopy and strip in one binary that uses argv[0] to decide its action.
d8e89b6b 317
36fb98be 318objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
7f924d55 319 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
a10d26a1 320 -rm -f $(STRIP_PROG)
df14d957 321 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
99a42820 322
e52e2acd
SC
323sysroff.c: sysinfo sysroff.info
324 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
325 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
326 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
f0eebb5f
JW
327
328sysroff.h: sysinfo sysroff.info
06459c06 329 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
e52e2acd 330
3bbea7af
ILT
331# Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
332# simultaneously.
333sysinfo.c: sysinfo.y arparse.c
e52e2acd
SC
334 $(BISON) -tvd $(srcdir)/sysinfo.y
335 rm -f sysinfo.c
3bbea7af
ILT
336 mv -f y.tab.c sysinfo.c
337 mv -f y.tab.h sysinfo.h
338
339# Separate from sysinfo.c so that a parallel make doesn't try to build
340# both sysinfo.c and sysinfo.h simultaneously.
341sysinfo.h: sysinfo.c
e52e2acd
SC
342
343syslex.c : syslex.l
344 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
345 mv lex.yy.c syslex.c
93464147 346
3bbea7af 347sysinfo: sysinfo.o syslex.o
7bf6856e
SC
348 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
349
c06e55d9 350syslex.o: syslex.c sysinfo.h
3bbea7af
ILT
351 if [ -r syslex.c ]; then \
352 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
353 else \
97f264c0 354 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
3bbea7af 355 fi
7bf6856e
SC
356
357sysinfo.o: sysinfo.c
3bbea7af
ILT
358 if [ -r sysinfo.c ]; then \
359 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
360 else \
361 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
362 fi
e52e2acd 363
36fb98be 364srconv: srconv.o coffgrok.o $(ADDL_DEPS)
7f924d55 365 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
e52e2acd 366
36fb98be 367dlltool: dlltool.o defparse.o deflex.o cplus-dem.o $(ADDL_DEPS)
7f924d55 368 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS)
125a4b58
SC
369
370defparse.c:defparse.y
371 $(BISON) $(BISONFLAGS) $(srcdir)/defparse.y
372 mv -f y.tab.c defparse.c
373 mv -f y.tab.h defparse.h
374
375defparse.h: defparse.c
376
377deflex.c:deflex.l
378 $(LEX) $(LEX_OPTIONS) $(srcdir)/deflex.l
379 mv lex.yy.c deflex.c
380
381dlltool.o:dlltool.c
5ab6ca68 382 $(CC) -c @DLLTOOL_DEFS@ $(ALL_CFLAGS) $(srcdir)/dlltool.c
125a4b58 383
36fb98be 384coffdump: coffdump.o coffgrok.o $(ADDL_DEPS)
7f924d55 385 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
e52e2acd 386
36fb98be 387sysdump: sysdump.o $(ADDL_DEPS)
7f924d55 388 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
e52e2acd 389
3bbea7af
ILT
390# Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
391# simultaneously.
392nlmheader.c: nlmheader.y sysinfo.c
bba04d93 393 $(BISON) $(srcdir)/nlmheader.y
29078b29 394 rm -f nlmheader.c
3bbea7af 395 mv -f y.tab.c nlmheader.c
29078b29 396
f5167986
ILT
397# coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
398# scripts, since they are only included conditionally.
399nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
5ab6ca68
ILT
400 ldname=`echo ld | sed '$(program_transform_name)'`; \
401 $(CC) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(ALL_CFLAGS) $(srcdir)/nlmconv.c
37853673 402
36fb98be 403$(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_DEPS)
7f924d55 404 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
bba04d93 405
f5167986
ILT
406# Targets to rebuild dependencies in this Makefile.
407# Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
408.dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
409 rm -f .dep1
410 $(MAKE) DEP=$(DEP) .dep1
411 sed -f dep.sed <.dep1 >.dep
412
413# This rule really wants a mkdep that runs "gcc -MM".
414.dep1: $(CFILES) $(GENERATED_CFILES)
415 rm -f .dep2
416 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
417 $(DEP) -f .dep2 $(ALL_CFLAGS) $?
418 $(srcdir)/../move-if-change .dep2 .dep1
419
420dep.sed: dep-in.sed config.status
421 sed <$(srcdir)/dep-in.sed >dep.sed \
422 -e 's!@INCDIR@!$(INCDIR)!' \
7f924d55 423 -e 's!@BFDDIR@!$(BFDDIR)!' \
f5167986
ILT
424 -e 's!@SRCDIR@!$(srcdir)!'
425
426dep: .dep
427 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
428 cat .dep >> tmp-Makefile
429 $(srcdir)/../move-if-change tmp-Makefile Makefile
430
431dep-in: .dep
432 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
433 cat .dep >> tmp-Makefile.in
434 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
435
436.PHONY: dep dep-in
6a3958b2 437
125a4b58 438###
6b583720 439# DOCUMENTATION TARGETS
125a4b58
SC
440config.texi: Makefile
441 rm -f config.texi
442 echo '@set VERSION $(VERSION)' > config.texi
6b583720 443# TeX output
125a4b58 444binutils.dvi: $(srcdir)/binutils.texi config.texi
94333f27 445 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
b7a11ec2 446
6b583720 447# info file for online browsing
125a4b58 448binutils.info: $(srcdir)/binutils.texi config.texi
6141fd50 449 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
b7a11ec2 450
c06e55d9
KR
451$(DEMANGLER_PROG).1: cxxfilt.man Makefile
452 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
453 > $(DEMANGLER_PROG).1
454
0c10ff03 455# different targets for -ms, -mm, -me
c83497f5
RP
456# Try to use a recent texi2roff. v2 was put on prep in jan91.
457# If you want an index, see texi2roff doc for postprocessing
458# and add -i to texi2roff invocations below.
459# Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
94333f27 460# corresponding -e lines when later texi2roff's are current)
c83497f5
RP
461# + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
462# + @c's deleted explicitly because texi2roff sees texinfo commands in them
463# + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
464# + @alphaenumerate is ridiculously new, turned into @enumerate
465
0c10ff03 466# roff output (-ms)
2226a090 467binutils.ms: $(srcdir)/binutils.texi
6b583720
RP
468 sed -e '/\\input texinfo/d' \
469 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
470 -e '/^@ifinfo/,/^@end ifinfo/d' \
471 -e '/^@c/d' \
2226a090 472 -e 's/{.*,,/{/' \
c83497f5
RP
473 -e 's/@ / /g' \
474 -e 's/^@alphaenumerate/@enumerate/g' \
475 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 476 $(srcdir)/binutils.texi | \
d8e89b6b 477 $(TEXI2ROFF) -ms | \
c83497f5
RP
478 sed -e 's/---/\\(em/g' \
479 >binutils.ms
6b583720 480
0c10ff03 481# roff output (-mm)
c83497f5
RP
482# '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
483# try leaving them in
2226a090 484binutils.mm: $(srcdir)/binutils.texi
0c10ff03
RP
485 sed -e '/\\input texinfo/d' \
486 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
487 -e '/^@ifinfo/,/^@end ifinfo/d' \
488 -e '/^@c/d' \
2226a090
RP
489 -e 's/{.*,,/{/' \
490 -e '/@noindent/d' \
c83497f5
RP
491 -e 's/@ / /g' \
492 -e 's/^@alphaenumerate/@enumerate/g' \
493 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 494 $(srcdir)/binutils.texi | \
d8e89b6b 495 $(TEXI2ROFF) -mm | \
2226a090
RP
496 sed -e 's/---/\\(em/g' \
497 >binutils.mm
0c10ff03
RP
498
499# roff output (-me)
2226a090 500binutils.me: $(srcdir)/binutils.texi
0c10ff03
RP
501 sed -e '/\\input texinfo/d' \
502 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
503 -e '/^@ifinfo/,/^@end ifinfo/d' \
504 -e '/^@c/d' \
2226a090 505 -e 's/{.*,,/{/' \
c83497f5
RP
506 -e 's/@ / /g' \
507 -e 's/^@alphaenumerate/@enumerate/g' \
508 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 509 $(srcdir)/binutils.texi | \
d8e89b6b 510 $(TEXI2ROFF) -me | \
c83497f5
RP
511 sed -e 's/---/\\(em/g' \
512 >binutils.me
0c10ff03
RP
513
514
125a4b58 515###
6b583720 516
8d5d0e11 517mostlyclean:
42ad6484 518 -rm -f *.o *~ \#* core binutils.?? binutils.??? y.output
69b60892 519 -rm -rf tmpdir
8d5d0e11 520clean: mostlyclean
f5167986
ILT
521 -rm -f $(PROGS) $(DEMANGLER_PROG).1 stamp-under
522 -rm -f underscore.c sysroff sysroff.c sysroff.h sysinfo dep.sed
94333f27 523distclean:
f5167986
ILT
524 -rm -f Makefile config.status *.o *~ \#* core y.*
525 -rm -f binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
d698bce4 526 -rm -f $(PROGS) underscore.c config.h stamp-h config.cache config.log
36fb98be 527 -rm -f dep.sed stamp-under $(DEMANGLER_PROG).1
4977f3b4
ILT
528maintainer-clean realclean: clean distclean
529 @echo "This command is intended for maintainers to use;"
530 @echo "it deletes files that may require special tools to rebuild."
125a4b58 531 -rm -f $(DISTSTUFF) *.info TAGS
99a42820
RP
532
533etags tags: TAGS
534
6a3958b2 535TAGS: force
bba04d93 536 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
99a42820 537
293129ca 538install: all
238aa238 539 for i in $(PROGS) ; do \
06459c06 540 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
99a42820 541 done
238aa238
DZ
542 for i in $(MANPAGES) ; do \
543 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
de53632c 544 done
293129ca
ILT
545 if [ x$(DEMANGLER_PROG) != x ]; then \
546 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1; \
547 fi
7f924d55
ILT
548 test -d $(tooldir) || mkdir $(tooldir)
549 test -d $(tooldir)/bin || mkdir $(tooldir)/bin
550 for i in $(TOOL_PROGS) ; do \
551 if [ -f $$i ]; then \
552 j=`echo $$i | sed -e 's/.new//'`; \
553 rm -f $(tooldir)/bin/$$j; \
554 k=`echo $$j | sed '$(program_transform_name)'`; \
555 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
4444ae6e 556 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
6ded6615 557 else true; \
7f924d55
ILT
558 fi; \
559 done
c83497f5 560
c59fa195
ILT
561# This little path search is required because in the FSF net releases,
562# the info files are included in the source tree, and that may not be
563# the same as the build directory.
94333f27 564install-info: binutils.info
c59fa195
ILT
565 if [ -r binutils.info ]; then \
566 dir=. ; \
567 else \
568 dir=$(srcdir) ; \
569 fi ; \
c06e55d9 570 for i in `cd $$dir; echo binutils.info*` ; do \
6f383ce5 571 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
84396dcf 572 done
99a42820 573
d8e89b6b
RP
574clean-info:
575 -rm -rf *.info*
576
e2fe2df4 577# Making a dist:
ee948e4e
PB
578# cvs rtag binutils-x-yy ld+utils
579# cvs co -r binutils-x-yy ld+utils
e2fe2df4
PB
580# cd {HERE}; make dist [-f Makefile.in]
581
f50af42b 582dist: $(DIST_NAME).tar.z
8539db10 583
125a4b58 584diststuff: $(DISTSTUFF) info
8d5d0e11 585
f50af42b 586$(DIST_NAME).tar.z:
b27d2046 587 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
8d5d0e11
PB
588 make diststuff -f Makefile.in
589 cd ../ld; make diststuff -f Makefile.in
3f97524f 590 cd ../gprof; make diststuff -f Makefile.in
7f7b0a77 591 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
2e8adbd7
PB
592 # Take out texinfo from configurable dirs
593 mv ../configure.in tmp; \
594 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
595 cd ..; chmod og=u `find . -print`
f50af42b 596 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
b27d2046 597 rm -rf ../../$(DIST_NAME)
8539db10 598
99a42820
RP
599#-----------------------------------------------------------------------------
600# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
601#
602# 'VERSION' file must be present and contain a string of the form "x.y"
603#-----------------------------------------------------------------------------
604
605ver960.c: FORCE
606 rm -f ver960.c
607 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
608
609
610# Dummy target to force execution of dependent targets.
611#
6a3958b2 612force:
99a42820
RP
613
614# Target to uncomment host-specific lines in this makefile. Such lines must
615# have the following string beginning in column 1: #__<hostname>__#
616# Original Makefile is backed up as 'Makefile.old'.
617#
618# Invoke with: make make HOST=xxx
619#
620make:
621 -@if test $(HOST)x = x ; then \
622 echo '\aSpecify "make make HOST=???"'; \
623 exit 1; \
624 fi ; \
625 grep -s "^#The next line was generated by 'make make'" Makefile; \
626 if test $$? = 0 ; then \
627 echo "\aMakefile has already been processed with 'make make'";\
628 exit 1; \
629 fi ; \
630 mv -f Makefile Makefile.old; \
631 echo "#The next line was generated by 'make make'" >Makefile ; \
632 echo "HOST=$(HOST)" >>Makefile ; \
633 echo >>Makefile ; \
634 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
635
5ab6ca68
ILT
636Makefile: Makefile.in config.status
637 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
638
639config.h: stamp-h ; @true
320d4f29
ILT
640stamp-h: config.in config.status
641 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
5ab6ca68 642
36fb98be 643config.status: configure $(srcdir)/../bfd/configure.host $(srcdir)/../bfd/config.bfd
5ab6ca68 644 $(SHELL) ./config.status --recheck
99a42820 645
f5167986
ILT
646# What appears below is generated by a hacked mkdep using gcc -MM.
647
648# DO NOT DELETE THIS LINE -- mkdep uses it.
649# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
650
651ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
652 $(INCDIR)/libiberty.h $(INCDIR)/progress.h bucomm.h \
653 config.h $(INCDIR)/fopen-same.h $(INCDIR)/aout/ar.h \
7f924d55 654 $(BFDDIR)/libbfd.h arsup.h
f5167986
ILT
655arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
656 $(INCDIR)/obstack.h arsup.h $(INCDIR)/libiberty.h bucomm.h \
657 config.h $(INCDIR)/fopen-same.h
658bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
659 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
660 config.h $(INCDIR)/fopen-same.h
661coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
662 $(INCDIR)/fopen-same.h
663coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/fopen-same.h \
7f924d55 664 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
f5167986
ILT
665 coffgrok.h
666debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
667 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
668 $(INCDIR)/libiberty.h debug.h
669dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
670 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
671 config.h $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
672 $(INCDIR)/demangle.h
673filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
674 $(INCDIR)/obstack.h
675ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
676 $(INCDIR)/ieee.h bucomm.h config.h $(INCDIR)/fopen-same.h \
677 $(INCDIR)/libiberty.h debug.h budbg.h
678is-ranlib.o: is-ranlib.c
679is-strip.o: is-strip.c
680maybe-ranlib.o: maybe-ranlib.c
681maybe-strip.o: maybe-strip.c
682nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
683 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
7f924d55
ILT
684 config.h $(INCDIR)/fopen-same.h $(BFDDIR)/libnlm.h \
685 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
686 nlmconv.h
f5167986
ILT
687nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
688 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
689 $(INCDIR)/getopt.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
690 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
691not-ranlib.o: not-ranlib.c
692not-strip.o: not-strip.c
693objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
694 $(INCDIR)/obstack.h $(INCDIR)/progress.h bucomm.h config.h \
0374a105
ILT
695 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
696 budbg.h
f5167986
ILT
697objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
698 $(INCDIR)/obstack.h $(INCDIR)/getopt.h $(INCDIR)/progress.h \
699 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h \
f32fb3fd 700 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/aout/aout64.h
f5167986
ILT
701prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
702 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
703 $(INCDIR)/libiberty.h debug.h budbg.h
f32fb3fd
ILT
704rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
705 $(INCDIR)/obstack.h $(INCDIR)/coff/internal.h bucomm.h \
706 config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
7f924d55 707 $(INCDIR)/demangle.h debug.h budbg.h $(BFDDIR)/libcoff.h \
f32fb3fd 708 $(INCDIR)/bfdlink.h
f5167986
ILT
709rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
710 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
711 $(INCDIR)/libiberty.h debug.h budbg.h
712size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
713 $(INCDIR)/getopt.h bucomm.h config.h $(INCDIR)/fopen-same.h \
714 $(INCDIR)/libiberty.h
715srconv.o: srconv.c bucomm.h config.h $(INCDIR)/fopen-same.h \
7f924d55 716 sysroff.h coffgrok.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
f5167986
ILT
717 $(INCDIR)/bfdlink.h sysroff.c
718stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
719 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
f32fb3fd
ILT
720 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
721 budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
722 $(INCDIR)/aout/stab.def
f5167986
ILT
723strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
724 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
725 $(INCDIR)/libiberty.h
726sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
727 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
728 sysroff.h sysroff.c
7f924d55
ILT
729version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
730 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h
f32fb3fd
ILT
731wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
732 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
733 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
734 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
f5167986
ILT
735underscore.o: underscore.c
736arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
737 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
738 arsup.h
739arlex.o: arlex.c arparse.h
740sysroff.o: sysroff.c
741sysinfo.o: sysinfo.c
742syslex.o: syslex.c sysinfo.h
743defparse.o: defparse.c
744deflex.o: deflex.c defparse.h
745nlmheader.o: nlmheader.c ../bfd/bfd.h $(INCDIR)/obstack.h \
746 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h \
747 $(INCDIR)/nlm/internal.h nlmconv.h
748
749# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.206972 seconds and 4 git commands to generate.