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