]> Git Repo - binutils.git/blame - binutils/Makefile.in
Mon Nov 11 20:50:29 1991 Steve Chamberlain (sac at cygnus.com)
[binutils.git] / binutils / Makefile.in
CommitLineData
d8474a9b
PB
1# Makefile for GNU binary-file utilities
2# Copyright (C) 1989-1991 Free Software Foundation, Inc.
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
RP
19
20#$Id$
21
a10d26a1 22srcdir = .
84396dcf
RP
23
24ddestdir = /usr/local
25idestdir = $(ddestdir)
26
27SHELL = /bin/sh
b5132a6b 28
8539db10 29# Distribution version
b27d2046 30VERSION=1.91
8539db10
PB
31# Distribution name
32DIST_NAME=binutils-beta-${VERSION}
33
06a97fbd 34version=`$(unsubdir)/../gcc$(subdir)/gcc -dumpversion`
84396dcf 35prefix = $(ddestdir)
d8474a9b 36bindir = $(prefix)/bin
84396dcf 37mandir = $(idestdir)/man
b5132a6b 38
6b583720 39# Where to find texinfo.tex to format docn with TeX
b7a11ec2
RP
40TEXIDIR = $(srcdir)/../texinfo/fsf
41
84396dcf
RP
42MANPAGES= ar.1 nm.1 objdump.1 ranlib.1 size.1 strip.1
43
7eff5bcf
JG
44#INSTALL = install -c
45#INSTALL_PROGRAM = $(INSTALL)
46#INSTALL_FILE = $(INSTALL)
a10d26a1 47
a10d26a1 48#CC=gcc -Wall
06a97fbd 49# these two are almost the same program
a10d26a1
RP
50AR_PROG=ar
51RANLIB_PROG=ranlib
99a42820
RP
52
53# copy and strip should be the same program
a10d26a1
RP
54COPY_PROG=copy
55STRIP_PROG=strip
99a42820
RP
56
57# These should all be the same program too.
a10d26a1
RP
58SIZE_PROG=size
59NM_PROG=nm
60OBJDUMP_PROG=objdump
99a42820 61
a10d26a1 62PROGS = $(SIZE_PROG) $(COPY_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG)
a01bf1fb 63STAGESTUFF = $(PROGS) *.o
99a42820 64
40773f7f 65BASEDIR = $(srcdir)/..
06a97fbd 66LIBDIR = $(unsubdir)/../bfd$(subdir)
a10d26a1 67
f79edb02 68MINUS_G = -g
a10d26a1
RP
69#### host and target dependant Makefile fragments come in here.
70###
71
9bba7784 72INCDIR = $(BASEDIR)/include
99a42820 73
f79edb02 74CFLAGS = $(MINUS_G) -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES)
99a42820 75
a26878d1
RP
76# When adding .o files, to make VPATH work in Sun Make, you have to
77# also add a foo.o: foo.c line at the bottom of the file.
78DISASMS = m68k-pinsn.o i960-pinsn.o sparc-pinsn.o am29k-pinsn.o
6a3958b2 79
99a42820
RP
80#\f
81## Random definitions
82# Hopefully all these may be flushed once we get configuration down pat.
83
84# alloca only needed for systems which don't have it and when cc != gcc.
85# ALLOCA = alloca.o
86
87# nm tries to malloc enough space for the string table. The old GNU malloc
88# rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
89# fail unnecessarily. I've also seen some Unix malloc's fail, even when
90# there is enough memory. So use the new GNU malloc.
91# MALLOC = gmalloc.o
92
93# Use the GNU getopt unless you have problems with it.
94# The IRIS version could probably benefit from being assembled with
95# libmalloc rather than the ordinary malloc.
06a97fbd 96LIBIBERTY = $(unsubdir)/../libiberty$(subdir)/libiberty.a
99a42820
RP
97
98# Code shared by all the binutils.
a10d26a1 99BULIBS = bucomm.o version.o filemode.o
99a42820 100
7a5a3c7b 101ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
99a42820
RP
102
103BFD = $(LIBDIR)/libbfd.a
104#\f
105## The rules
106
a10d26a1
RP
107all: $(ADDL_LIBS) $(PROGS)
108
109
110#$(BFD):$(LIBDIR)/../common/*.c
111# (cd $(LIBDIR); make)
99a42820 112
a10d26a1 113$(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
6a3958b2 114 $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(LOADLIBES)
99a42820 115
a10d26a1 116$(COPY_PROG): $(ADDL_LIBS) copy.o $(BFD)
6a3958b2 117 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o $(ADDL_LIBS) $(LOADLIBES)
99a42820 118
a10d26a1 119$(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
6a3958b2 120 $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES)
99a42820 121
a10d26a1 122$(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD)
6a3958b2 123 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(LOADLIBES)
99a42820 124
06a97fbd
PB
125$(AR_PROG): $(ADDL_LIBS) ar.o not-ranlib.o $(BFD)
126 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o not-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
99a42820 127
06a97fbd 128$(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o $(BFD)
8539db10 129 $(CC) $(LDFLAGS) $(CFLAGS) -o $(RANLIB_PROG) ar.o is-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
06a97fbd
PB
130
131# This rule creates a single binary that switches between ar and ranlib
132# by looking at argv[0]. Use this kludge to save some disk space.
133# However, you have to install things by hand.
134# (That is after 'make install', replace the installed ranlib by a link to ar.)
135
136# Alternatively, you can install ranlib.sh as ranlib.
137
138ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
139 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
a10d26a1
RP
140 -rm -f $(RANLIB_PROG)
141 -ln $(AR_PROG) $(RANLIB_PROG)
99a42820 142
a10d26a1
RP
143$(STRIP_PROG): $(COPY_PROG)
144 -rm -f $(STRIP_PROG)
145 -ln $(COPY_PROG) $(STRIP_PROG)
99a42820 146
6a3958b2
RP
147stage1: force
148 - mkdir stage1
a01bf1fb 149 - mv -f $(STAGESTUFF) stage1
6a3958b2
RP
150
151stage2: force
152 - mkdir stage2
a01bf1fb 153 - mv -f $(STAGESTUFF) stage2
6a3958b2
RP
154
155stage3: force
156 - mkdir stage3
a01bf1fb
RP
157 - mv -f $(STAGESTUFF) stage3
158
159against=stage2
160
161comparison: force
162 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
6a3958b2
RP
163
164de-stage1: force
165 - (cd stage1 ; mv -f * ..)
166 - rmdir stage1
167
168de-stage2: force
169 - (cd stage2 ; mv -f * ..)
170 - rmdir stage2
171
172de-stage3: force
173 - (cd stage3 ; mv -f * ..)
174 - rmdir stage3
175
6b583720
RP
176######################################################################
177# DOCUMENTATION TARGETS
178# TeX output
b7a11ec2
RP
179binutils.dvi: binutils.texinfo
180 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex binutils.texinfo
181 texindex binutils.??
182 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex binutils.texinfo
183
6b583720 184# info file for online browsing
b7a11ec2
RP
185binutils.info: binutils.texinfo
186 makeinfo binutils.texinfo
187
0c10ff03 188# different targets for -ms, -mm, -me
6b583720
RP
189# (we don't use a variable because we don't trust all makes to handle
190# a var in the target name right).
0c10ff03 191# roff output (-ms)
6b583720
RP
192binutils.ms: binutils.texinfo
193 sed -e '/\\input texinfo/d' \
194 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
195 binutils.texinfo | \
196 texi2roff -ms >binutils.ms
197
0c10ff03
RP
198# roff output (-mm)
199binutils.mm: binutils.texinfo
200 sed -e '/\\input texinfo/d' \
201 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
202 binutils.texinfo | \
203 texi2roff -mm >binutils.mm
204
205# roff output (-me)
206binutils.me: binutils.texinfo
207 sed -e '/\\input texinfo/d' \
208 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
209 binutils.texinfo | \
210 texi2roff -me >binutils.me
211
212
6b583720
RP
213######################################################################
214
99a42820 215clean:
b7a11ec2 216 -rm -f *.o *~ \#* core $(STAGESTUFF) TAGS binutils.?? binutils.???
99a42820
RP
217
218etags tags: TAGS
219
6a3958b2 220TAGS: force
99a42820
RP
221 etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
222
223realclean: clean
a01bf1fb 224 -rm -f $(STAGESTUFF) TAGS
99a42820
RP
225
226install: $(PROGS)
b5132a6b 227 for i in $(PROGS) ; do \
7eff5bcf
JG
228 cp $$i $(bindir)/$$i.new ; \
229 mv -f $(bindir)/$$i.new $(bindir)/$$i ; \
99a42820 230 done
84396dcf
RP
231 for i in $(MANPAGES) ; do \
232 cp $(srcdir)/$$i $(mandir)/man1/$$i.new ; \
233 mv -f $(mandir)/man1/$$i.new $(mandir)/man1/$$i ; \
234 done
99a42820 235
8539db10
PB
236dist: $(DIST_NAME).tar.Z
237
d8474a9b 238$(DIST_NAME).tar.Z:
b27d2046
PB
239 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
240 make binutils.mm -f Makefile.in
d8474a9b
PB
241 cd ../ld; make ld.mm -f Makefile.in
242 cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
b27d2046 243 rm -rf ../../$(DIST_NAME)
8539db10 244
d7cce023
JG
245# These get around a bug in Sun Make in SunOS 4.1.1
246alloca.o:alloca.c
a26878d1 247am29k-pinsn.o: am29k-pinsn.c
99a42820 248ar.o: ar.c
d7cce023
JG
249bucomm.o: bucomm.c
250copy.o: copy.c
251cplus-dem.o:cplus-dem.c
252filemode.o:filemode.c
a10d26a1
RP
253getopt.o:getopt.c
254getopt1.o:getopt1.c
d7cce023
JG
255gmalloc.o:gmalloc.c
256i960-pinsn.o: i960-pinsn.c
257is-ranlib.o:is-ranlib.c
258m68k-pinsn.o: m68k-pinsn.c
259maybe-ranlib.o:maybe-ranlib.c
260nm.o: nm.c
261not-ranlib.o:not-ranlib.c
262objdump.o: objdump.c
263size.o: size.c
264sparc-pinsn.o: sparc-pinsn.c
265strip.o:strip.c
266version.o: version.c
8539db10 267
99a42820
RP
268#-----------------------------------------------------------------------------
269# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
270#
271# 'VERSION' file must be present and contain a string of the form "x.y"
272#-----------------------------------------------------------------------------
273
274ver960.c: FORCE
275 rm -f ver960.c
276 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
277
278
279# Dummy target to force execution of dependent targets.
280#
6a3958b2 281force:
99a42820
RP
282
283# Target to uncomment host-specific lines in this makefile. Such lines must
284# have the following string beginning in column 1: #__<hostname>__#
285# Original Makefile is backed up as 'Makefile.old'.
286#
287# Invoke with: make make HOST=xxx
288#
289make:
290 -@if test $(HOST)x = x ; then \
291 echo '\aSpecify "make make HOST=???"'; \
292 exit 1; \
293 fi ; \
294 grep -s "^#The next line was generated by 'make make'" Makefile; \
295 if test $$? = 0 ; then \
296 echo "\aMakefile has already been processed with 'make make'";\
297 exit 1; \
298 fi ; \
299 mv -f Makefile Makefile.old; \
300 echo "#The next line was generated by 'make make'" >Makefile ; \
301 echo "HOST=$(HOST)" >>Makefile ; \
302 echo >>Makefile ; \
303 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
304
f1eb48b6 305Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 306 $(SHELL) ./config.status
99a42820
RP
307
308### Local Variables: ***
309### mode:fundamental ***
310### page-delimiter: "^#\f" ***
311### End: ***
312### end of file
This page took 0.086186 seconds and 4 git commands to generate.