]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/Makefile.in
* gdb.base/corefile.exp: Add (xfail'd) test for reinit_frame_cache
[thirdparty/binutils-gdb.git] / binutils / Makefile.in
CommitLineData
d8474a9b 1# Makefile for GNU binary-file utilities
37853673 2# Copyright (C) 1992, 1993, 1994 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
18# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
99a42820 19
a10d26a1 20srcdir = .
84396dcf 21
d8e89b6b
RP
22prefix = /usr/local
23
3790af1d 24program_transform_name =
d8e89b6b
RP
25exec_prefix = $(prefix)
26bindir = $(exec_prefix)/bin
27libdir = $(exec_prefix)/lib
f6dddd4e 28tooldir = $(exec_prefix)/$(target_alias)
d8e89b6b
RP
29
30datadir = $(prefix)/lib
31mandir = $(prefix)/man
32man1dir = $(mandir)/man1
33man2dir = $(mandir)/man2
34man3dir = $(mandir)/man3
35man4dir = $(mandir)/man4
36man5dir = $(mandir)/man5
37man6dir = $(mandir)/man6
38man7dir = $(mandir)/man7
39man8dir = $(mandir)/man8
40man9dir = $(mandir)/man9
41infodir = $(prefix)/info
42includedir = $(prefix)/include
43docdir = $(datadir)/doc
84396dcf
RP
44
45SHELL = /bin/sh
d8e89b6b 46
5ebaf24b 47INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
d8e89b6b 48INSTALL_PROGRAM = $(INSTALL)
c06e55d9 49INSTALL_DATA = $(INSTALL)
29078b29 50INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
238aa238 51INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
d8e89b6b
RP
52
53AR = ar
54AR_FLAGS = qv
55CFLAGS = -g
d8e89b6b 56MAKEINFO = makeinfo
c921e2aa 57TEXI2DVI = texi2dvi
d8e89b6b 58RANLIB = ranlib
9752f9fd 59BISONFLAGS = -d
c83497f5 60TEXI2ROFF=texi2roff
29078b29 61MAKEOVERRIDES=
7bf6856e 62CC_FOR_BUILD = $(CC)
f50af42b
KR
63NM_FOR_TARGET = nm
64NM = $(NM_FOR_TARGET)
8d5d0e11
PB
65SYMLINK = ln -s
66
e52e2acd 67BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
45212e5e
PB
68# Comment these out if using lex.
69LEX_OPTIONS = -I -Cem
e2fe2df4 70LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
45212e5e 71
8539db10 72# Distribution version
c06e55d9 73VERSION=cygnus-2.4.1
8539db10 74# Distribution name
d8e89b6b 75DIST_NAME=binutils-${VERSION}
8539db10 76
d8e89b6b 77version=`./../gcc/gcc -dumpversion`
b5132a6b 78
6b583720 79# Where to find texinfo.tex to format docn with TeX
94333f27 80TEXIDIR = $(srcdir)/../texinfo
b7a11ec2 81
a10d26a1 82#CC=gcc -Wall
c06e55d9 83CC=cc
06a97fbd 84# these two are almost the same program
a10d26a1
RP
85AR_PROG=ar
86RANLIB_PROG=ranlib
99a42820 87
df14d957
ILT
88# objcopy and strip should be the same program
89OBJCOPY_PROG=objcopy
06459c06 90STRIP_PROG=strip.new
99a42820 91
4f15fb27
DM
92STRINGS_PROG=strings
93
99a42820 94# These should all be the same program too.
a10d26a1 95SIZE_PROG=size
06459c06 96NM_PROG=nm.new
a10d26a1 97OBJDUMP_PROG=objdump
99a42820 98
c921e2aa 99# This is the demangler, as a standalone program.
c06e55d9 100# Note: This one is used as the installed name too, unlike the above.
df14d957 101DEMANGLER_PROG=c++filt
c921e2aa 102
29078b29
ILT
103NLMCONV_PROG=nlmconv
104
c06e55d9
KR
105SRCONV_PROG=srconv sysdump coffdump
106
1cf8bd3f 107MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
e52e2acd 108
c06e55d9 109PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG)
a01bf1fb 110STAGESTUFF = $(PROGS) *.o
8d5d0e11 111# Files that can be generated, but should be in the distribution.
c06e55d9 112DISTSTUFF=arparse.c arlex.c nlmheader.c sysinfo.c syslex.c info
99a42820 113
b5775df3
DHW
114# Stuff that goes in tooldir/ if appropriate
115TOOL_PROGS = nm.new strip.new ar ranlib
116
40773f7f 117BASEDIR = $(srcdir)/..
bba04d93
DM
118BFDDIR = $(BASEDIR)/bfd
119INCDIR = $(BASEDIR)/include
120INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
a10d26a1 121
a10d26a1
RP
122#### host and target dependant Makefile fragments come in here.
123###
124
37853673
SS
125ALL_CFLAGS = $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS)
126
d8e89b6b 127.c.o:
37853673 128 $(CC) -c $(ALL_CFLAGS) $<
99a42820 129
99a42820
RP
130#\f
131## Random definitions
132# Hopefully all these may be flushed once we get configuration down pat.
133
134# alloca only needed for systems which don't have it and when cc != gcc.
135# ALLOCA = alloca.o
136
137# nm tries to malloc enough space for the string table. The old GNU malloc
138# rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
139# fail unnecessarily. I've also seen some Unix malloc's fail, even when
140# there is enough memory. So use the new GNU malloc.
141# MALLOC = gmalloc.o
37853673
SS
142# Use this if the system malloc is good enough.
143MALLOC =
99a42820
RP
144
145# Use the GNU getopt unless you have problems with it.
146# The IRIS version could probably benefit from being assembled with
147# libmalloc rather than the ordinary malloc.
bba04d93 148LIBIBERTY = ../libiberty/libiberty.a
99a42820
RP
149
150# Code shared by all the binutils.
a10d26a1 151BULIBS = bucomm.o version.o filemode.o
99a42820 152
5a070355 153ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
99a42820 154
bba04d93
DM
155BFD = ../bfd/libbfd.a
156OPCODES = ../opcodes/libopcodes.a
f6dddd4e 157
df14d957 158RUNTEST = runtest
03372cf4 159RUNTESTFLAGS =
f6dddd4e 160FLAGS_TO_PASS = \
4447efa2
ILT
161 "CC=$(CC)" \
162 "CFLAGS=$(CFLAGS)" \
df14d957 163 "RUNTEST=$(RUNTEST)" \
e52e2acd 164 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
f6dddd4e 165
99a42820
RP
166#\f
167## The rules
168
f6dddd4e 169all: $(ADDL_LIBS) $(PROGS)
4f8b1219
MW
170
171testsuite:
238aa238
DZ
172 if [ -f testsuite/Makefile.in ]; then \
173 (rootme=`pwd`/ ; export rootme ; \
174 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
175 cd testsuite; $(MAKE) FLAGS_TO_PASS=$(FLAGS_TO_PASS)); \
3048fb38 176 else true ; fi
c83497f5 177
f6dddd4e
PB
178check: force
179 rootme=`pwd`; export rootme; cd testsuite ; \
180 $(MAKE) check $(FLAGS_TO_PASS)
d8e89b6b 181
f7ed13c7 182installcheck:
7d6cc102
RP
183 /bin/sh $(srcdir)/sanity.sh $(bindir)
184
d8e89b6b 185info: binutils.info
a10d26a1 186
c921e2aa
FF
187dvi: binutils.dvi
188
a10d26a1 189$(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
94333f27 190 $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
99a42820 191
df14d957 192$(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
94333f27 193 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
d8e89b6b 194
4f15fb27 195$(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
94333f27 196 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
4f15fb27 197
df14d957 198$(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
94333f27 199 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
99a42820 200
6f88f031
ILT
201$(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
202 $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
99a42820 203
29078b29 204$(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES)
94333f27 205 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
bba04d93 206
6f88f031 207underscore.c: Makefile
f993f087 208 rm -f underscore.c
6f88f031
ILT
209 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
210 echo "int prepends_underscore = $(UNDERSCORE);" >>underscore.t
211 mv -f underscore.t underscore.c
f50af42b 212
3bbea7af 213version.o: version.c Makefile
bba04d93
DM
214 $(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' $(CFLAGS) -c $(srcdir)/version.c
215
6f88f031 216cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
bba04d93 217 $(CC) -c -DMAIN $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
f50af42b 218
29078b29 219$(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o version.o
94333f27 220 $(CC) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o version.o
c921e2aa 221
3bbea7af 222arparse.c: arparse.y
9752f9fd 223 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
3bbea7af
ILT
224 mv -f y.tab.c arparse.c
225 mv -f y.tab.h arparse.h
226
227# Separate from arparse.c so that a parallel make doesn't try to build
228# both arparse.c and arparse.h simultaneously.
229arparse.h: arparse.c
d8e89b6b 230
9752f9fd
ME
231arlex.c: arlex.l
232 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
233 mv lex.yy.c arlex.c
d8e89b6b
RP
234
235$(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
94333f27 236 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
d8e89b6b
RP
237
238$(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
94333f27 239 $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
06a97fbd
PB
240
241# This rule creates a single binary that switches between ar and ranlib
242# by looking at argv[0]. Use this kludge to save some disk space.
243# However, you have to install things by hand.
244# (That is after 'make install', replace the installed ranlib by a link to ar.)
245
246# Alternatively, you can install ranlib.sh as ranlib.
247
248ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
94333f27 249 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
a10d26a1
RP
250 -rm -f $(RANLIB_PROG)
251 -ln $(AR_PROG) $(RANLIB_PROG)
99a42820 252
df14d957 253# objcopy and strip in one binary that uses argv[0] to decide its action.
d8e89b6b 254
df14d957 255objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
94333f27 256 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
a10d26a1 257 -rm -f $(STRIP_PROG)
df14d957 258 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
99a42820 259
e52e2acd
SC
260sysroff.c: sysinfo sysroff.info
261 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
262 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
263 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
06459c06 264 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
e52e2acd 265
3bbea7af
ILT
266# Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
267# simultaneously.
268sysinfo.c: sysinfo.y arparse.c
e52e2acd
SC
269 $(BISON) -tvd $(srcdir)/sysinfo.y
270 rm -f sysinfo.c
3bbea7af
ILT
271 mv -f y.tab.c sysinfo.c
272 mv -f y.tab.h sysinfo.h
273
274# Separate from sysinfo.c so that a parallel make doesn't try to build
275# both sysinfo.c and sysinfo.h simultaneously.
276sysinfo.h: sysinfo.c
e52e2acd
SC
277
278syslex.c : syslex.l
279 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
280 mv lex.yy.c syslex.c
281
3bbea7af 282sysinfo: sysinfo.o syslex.o
7bf6856e
SC
283 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
284
c06e55d9 285syslex.o: syslex.c sysinfo.h
3bbea7af
ILT
286 if [ -r syslex.c ]; then \
287 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
288 else \
289 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/syslex.c ;\
290 fi
7bf6856e
SC
291
292sysinfo.o: sysinfo.c
3bbea7af
ILT
293 if [ -r sysinfo.c ]; then \
294 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
295 else \
296 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
297 fi
e52e2acd 298
06459c06 299srconv: sysroff.c srconv.o sysroff.c coffgrok.o $(ADDL_LIBS)
e52e2acd
SC
300 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
301
302coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
303 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
304
06459c06 305sysdump: sysroff.c sysdump.o $(ADDL_LIBS)
e52e2acd
SC
306 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
307
3bbea7af
ILT
308# Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
309# simultaneously.
310nlmheader.c: nlmheader.y sysinfo.c
bba04d93 311 $(BISON) $(srcdir)/nlmheader.y
29078b29 312 rm -f nlmheader.c
3bbea7af 313 mv -f y.tab.c nlmheader.c
29078b29 314
37853673 315nlmconv.o: nlmconv.c
4e85e79f 316 ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \
9d11577a 317 $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(NLMCONV_DEFS) $(CFLAGS) $(srcdir)/nlmconv.c
37853673 318
29078b29 319$(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
94333f27 320 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
bba04d93
DM
321
322# This list of dependencies was generated by doing a make with gcc -MM
323# saving the output in a file and removing the gcc commands
324# changing "../../devo/binutils/../bfd" to "$(BFDDIR)"
325# removing "../../devo/binutils/"
326# changing "../include" to "$(INCDIR)"
327
328bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
329 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
37853673 330 $(INCDIR)/fopen-same.h bucomm.h
bba04d93
DM
331filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
332 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
333 $(INCDIR)/fopen-same.h
334size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
335 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
336 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h
337objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
338 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
339 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
340 $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \
341 $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def
342nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
343 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
344 $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/getopt.h \
345 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
d6a4c375 346 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h
bba04d93
DM
347ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
348 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
349 $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/aout/ar.h \
350 $(BFDDIR)/libbfd.h arsup.h
351arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
352 $(INCDIR)/obstack.h arsup.h
353arlex.o: arlex.c ./arparse.h
354not-ranlib.o: not-ranlib.c
355arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
356 $(INCDIR)/obstack.h arsup.h bucomm.h
357strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
358 $(INCDIR)/obstack.h bucomm.h
359objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
360 $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
361 $(INCDIR)/fopen-same.h bucomm.h
362is-strip.o: is-strip.c
363is-ranlib.o: is-ranlib.c
364not-strip.o: not-strip.c
c59fa195
ILT
365nlmheader.o: nlmheader.c ../bfd/bfd.h ../bfd/sysdep.h \
366 $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
367 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
368nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h ../bfd/sysdep.h \
369 $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
370 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
371 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \
372 $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
29078b29 373
6a3958b2
RP
374stage1: force
375 - mkdir stage1
a01bf1fb 376 - mv -f $(STAGESTUFF) stage1
6a3958b2
RP
377
378stage2: force
379 - mkdir stage2
a01bf1fb 380 - mv -f $(STAGESTUFF) stage2
6a3958b2
RP
381
382stage3: force
383 - mkdir stage3
a01bf1fb
RP
384 - mv -f $(STAGESTUFF) stage3
385
386against=stage2
387
388comparison: force
389 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
6a3958b2
RP
390
391de-stage1: force
392 - (cd stage1 ; mv -f * ..)
393 - rmdir stage1
394
395de-stage2: force
396 - (cd stage2 ; mv -f * ..)
397 - rmdir stage2
398
399de-stage3: force
400 - (cd stage3 ; mv -f * ..)
401 - rmdir stage3
402
6b583720
RP
403######################################################################
404# DOCUMENTATION TARGETS
405# TeX output
2226a090 406binutils.dvi: $(srcdir)/binutils.texi
94333f27 407 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
b7a11ec2 408
6b583720 409# info file for online browsing
2226a090 410binutils.info: $(srcdir)/binutils.texi
6141fd50 411 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
b7a11ec2 412
c06e55d9
KR
413$(DEMANGLER_PROG).1: cxxfilt.man Makefile
414 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
415 > $(DEMANGLER_PROG).1
416
0c10ff03 417# different targets for -ms, -mm, -me
c83497f5
RP
418# Try to use a recent texi2roff. v2 was put on prep in jan91.
419# If you want an index, see texi2roff doc for postprocessing
420# and add -i to texi2roff invocations below.
421# Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
94333f27 422# corresponding -e lines when later texi2roff's are current)
c83497f5
RP
423# + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
424# + @c's deleted explicitly because texi2roff sees texinfo commands in them
425# + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
426# + @alphaenumerate is ridiculously new, turned into @enumerate
427
0c10ff03 428# roff output (-ms)
2226a090 429binutils.ms: $(srcdir)/binutils.texi
6b583720
RP
430 sed -e '/\\input texinfo/d' \
431 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
432 -e '/^@ifinfo/,/^@end ifinfo/d' \
433 -e '/^@c/d' \
2226a090 434 -e 's/{.*,,/{/' \
c83497f5
RP
435 -e 's/@ / /g' \
436 -e 's/^@alphaenumerate/@enumerate/g' \
437 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 438 $(srcdir)/binutils.texi | \
d8e89b6b 439 $(TEXI2ROFF) -ms | \
c83497f5
RP
440 sed -e 's/---/\\(em/g' \
441 >binutils.ms
6b583720 442
0c10ff03 443# roff output (-mm)
c83497f5
RP
444# '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
445# try leaving them in
2226a090 446binutils.mm: $(srcdir)/binutils.texi
0c10ff03
RP
447 sed -e '/\\input texinfo/d' \
448 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
449 -e '/^@ifinfo/,/^@end ifinfo/d' \
450 -e '/^@c/d' \
2226a090
RP
451 -e 's/{.*,,/{/' \
452 -e '/@noindent/d' \
c83497f5
RP
453 -e 's/@ / /g' \
454 -e 's/^@alphaenumerate/@enumerate/g' \
455 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 456 $(srcdir)/binutils.texi | \
d8e89b6b 457 $(TEXI2ROFF) -mm | \
2226a090
RP
458 sed -e 's/---/\\(em/g' \
459 >binutils.mm
0c10ff03
RP
460
461# roff output (-me)
2226a090 462binutils.me: $(srcdir)/binutils.texi
0c10ff03
RP
463 sed -e '/\\input texinfo/d' \
464 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
c83497f5
RP
465 -e '/^@ifinfo/,/^@end ifinfo/d' \
466 -e '/^@c/d' \
2226a090 467 -e 's/{.*,,/{/' \
c83497f5
RP
468 -e 's/@ / /g' \
469 -e 's/^@alphaenumerate/@enumerate/g' \
470 -e 's/^@end alphaenumerate/@end enumerate/g' \
2226a090 471 $(srcdir)/binutils.texi | \
d8e89b6b 472 $(TEXI2ROFF) -me | \
c83497f5
RP
473 sed -e 's/---/\\(em/g' \
474 >binutils.me
0c10ff03
RP
475
476
6b583720
RP
477######################################################################
478
8d5d0e11 479mostlyclean:
3f97524f 480 -rm -f *.o *~ \#* core binutils.?? binutils.???
8d5d0e11 481clean: mostlyclean
94333f27
ILT
482 @if [ -d testsuite ] ; then \
483 cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) clean ; \
484 else true; fi
f50af42b 485 -rm -f $(PROGS) underscore.c
94333f27
ILT
486distclean:
487 @if [ -d testsuite ] ; then \
488 cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) distclean ; \
489 else true; fi
c06e55d9 490 -rm -f Makefile config.status sysdep.h *.o *~ \#* core y.* \
94333f27 491 binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
7bf6856e 492 -rm -f $(PROGS) underscore.c
94333f27 493realclean: clean distclean
8d5d0e11 494 -rm -f $(DISTSTUFF) TAGS
99a42820
RP
495
496etags tags: TAGS
497
6a3958b2 498TAGS: force
bba04d93 499 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
99a42820 500
c06e55d9 501install: all $(DEMANGLER_PROG).1
238aa238 502 for i in $(PROGS) ; do \
06459c06 503 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
99a42820 504 done
238aa238
DZ
505 for i in $(MANPAGES) ; do \
506 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
de53632c 507 done
1cf8bd3f 508 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1
3f97524f 509 -if [ -d $(tooldir) ]; then \
c063fc45 510 if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
b5775df3 511 for i in $(TOOL_PROGS) ; do \
c063fc45
KR
512 j=`echo $$i | sed -e 's/.new//'`; \
513 rm -f $(tooldir)/bin/$$j; \
514 k=`t='$(program_transform_name)'; echo $$j | sed -e s/x/x/ $$t`; \
515 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
516 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
517 done; \
518 else true; fi
c83497f5 519
c59fa195
ILT
520# This little path search is required because in the FSF net releases,
521# the info files are included in the source tree, and that may not be
522# the same as the build directory.
94333f27 523install-info: binutils.info
c59fa195
ILT
524 if [ -r binutils.info ]; then \
525 dir=. ; \
526 else \
527 dir=$(srcdir) ; \
528 fi ; \
c06e55d9 529 for i in `cd $$dir; echo binutils.info*` ; do \
d8e89b6b 530 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
84396dcf 531 done
99a42820 532
d8e89b6b
RP
533clean-info:
534 -rm -rf *.info*
535
e2fe2df4 536# Making a dist:
ee948e4e
PB
537# cvs rtag binutils-x-yy ld+utils
538# cvs co -r binutils-x-yy ld+utils
e2fe2df4
PB
539# Sanitize
540# cd {HERE}; make dist [-f Makefile.in]
541
f50af42b 542dist: $(DIST_NAME).tar.z
8539db10 543
8d5d0e11
PB
544diststuff: $(DISTSTUFF)
545
f50af42b 546$(DIST_NAME).tar.z:
b27d2046 547 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
8d5d0e11
PB
548 make diststuff -f Makefile.in
549 cd ../ld; make diststuff -f Makefile.in
3f97524f 550 cd ../gprof; make diststuff -f Makefile.in
7f7b0a77 551 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
2e8adbd7
PB
552 # Take out texinfo from configurable dirs
553 mv ../configure.in tmp; \
554 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
555 cd ..; chmod og=u `find . -print`
f50af42b 556 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
b27d2046 557 rm -rf ../../$(DIST_NAME)
8539db10 558
99a42820
RP
559#-----------------------------------------------------------------------------
560# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
561#
562# 'VERSION' file must be present and contain a string of the form "x.y"
563#-----------------------------------------------------------------------------
564
565ver960.c: FORCE
566 rm -f ver960.c
567 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
568
569
570# Dummy target to force execution of dependent targets.
571#
6a3958b2 572force:
99a42820
RP
573
574# Target to uncomment host-specific lines in this makefile. Such lines must
575# have the following string beginning in column 1: #__<hostname>__#
576# Original Makefile is backed up as 'Makefile.old'.
577#
578# Invoke with: make make HOST=xxx
579#
580make:
581 -@if test $(HOST)x = x ; then \
582 echo '\aSpecify "make make HOST=???"'; \
583 exit 1; \
584 fi ; \
585 grep -s "^#The next line was generated by 'make make'" Makefile; \
586 if test $$? = 0 ; then \
587 echo "\aMakefile has already been processed with 'make make'";\
588 exit 1; \
589 fi ; \
590 mv -f Makefile Makefile.old; \
591 echo "#The next line was generated by 'make make'" >Makefile ; \
592 echo "HOST=$(HOST)" >>Makefile ; \
593 echo >>Makefile ; \
594 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
595
f1eb48b6 596Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 597 $(SHELL) ./config.status
99a42820
RP
598
599### Local Variables: ***
600### mode:fundamental ***
601### page-delimiter: "^#\f" ***
602### End: ***
603### end of file