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