]>
Commit | Line | Data |
---|---|---|
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 | 22 | srcdir = . |
84396dcf RP |
23 | |
24 | ddestdir = /usr/local | |
25 | idestdir = $(ddestdir) | |
26 | ||
27 | SHELL = /bin/sh | |
b5132a6b | 28 | |
8539db10 | 29 | # Distribution version |
b27d2046 | 30 | VERSION=1.91 |
8539db10 PB |
31 | # Distribution name |
32 | DIST_NAME=binutils-beta-${VERSION} | |
33 | ||
06a97fbd | 34 | version=`$(unsubdir)/../gcc$(subdir)/gcc -dumpversion` |
84396dcf | 35 | prefix = $(ddestdir) |
d8474a9b | 36 | bindir = $(prefix)/bin |
84396dcf | 37 | mandir = $(idestdir)/man |
b5132a6b | 38 | |
6b583720 | 39 | # Where to find texinfo.tex to format docn with TeX |
b7a11ec2 RP |
40 | TEXIDIR = $(srcdir)/../texinfo/fsf |
41 | ||
84396dcf RP |
42 | MANPAGES= 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 |
50 | AR_PROG=ar |
51 | RANLIB_PROG=ranlib | |
99a42820 RP |
52 | |
53 | # copy and strip should be the same program | |
a10d26a1 RP |
54 | COPY_PROG=copy |
55 | STRIP_PROG=strip | |
99a42820 RP |
56 | |
57 | # These should all be the same program too. | |
a10d26a1 RP |
58 | SIZE_PROG=size |
59 | NM_PROG=nm | |
60 | OBJDUMP_PROG=objdump | |
99a42820 | 61 | |
a10d26a1 | 62 | PROGS = $(SIZE_PROG) $(COPY_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG) |
a01bf1fb | 63 | STAGESTUFF = $(PROGS) *.o |
99a42820 | 64 | |
40773f7f | 65 | BASEDIR = $(srcdir)/.. |
06a97fbd | 66 | LIBDIR = $(unsubdir)/../bfd$(subdir) |
a10d26a1 | 67 | |
f79edb02 | 68 | MINUS_G = -g |
a10d26a1 RP |
69 | #### host and target dependant Makefile fragments come in here. |
70 | ### | |
71 | ||
9bba7784 | 72 | INCDIR = $(BASEDIR)/include |
99a42820 | 73 | |
f79edb02 | 74 | CFLAGS = $(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. | |
78 | DISASMS = 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 | 96 | LIBIBERTY = $(unsubdir)/../libiberty$(subdir)/libiberty.a |
99a42820 RP |
97 | |
98 | # Code shared by all the binutils. | |
a10d26a1 | 99 | BULIBS = bucomm.o version.o filemode.o |
99a42820 | 100 | |
7a5a3c7b | 101 | ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY) |
99a42820 RP |
102 | |
103 | BFD = $(LIBDIR)/libbfd.a | |
104 | #\f | |
105 | ## The rules | |
106 | ||
a10d26a1 RP |
107 | all: $(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 | ||
138 | ar_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 |
147 | stage1: force |
148 | - mkdir stage1 | |
a01bf1fb | 149 | - mv -f $(STAGESTUFF) stage1 |
6a3958b2 RP |
150 | |
151 | stage2: force | |
152 | - mkdir stage2 | |
a01bf1fb | 153 | - mv -f $(STAGESTUFF) stage2 |
6a3958b2 RP |
154 | |
155 | stage3: force | |
156 | - mkdir stage3 | |
a01bf1fb RP |
157 | - mv -f $(STAGESTUFF) stage3 |
158 | ||
159 | against=stage2 | |
160 | ||
161 | comparison: force | |
162 | for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done | |
6a3958b2 RP |
163 | |
164 | de-stage1: force | |
165 | - (cd stage1 ; mv -f * ..) | |
166 | - rmdir stage1 | |
167 | ||
168 | de-stage2: force | |
169 | - (cd stage2 ; mv -f * ..) | |
170 | - rmdir stage2 | |
171 | ||
172 | de-stage3: force | |
173 | - (cd stage3 ; mv -f * ..) | |
174 | - rmdir stage3 | |
175 | ||
6b583720 RP |
176 | ###################################################################### |
177 | # DOCUMENTATION TARGETS | |
178 | # TeX output | |
b7a11ec2 RP |
179 | binutils.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 |
185 | binutils.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 |
192 | binutils.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) |
199 | binutils.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) | |
206 | binutils.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 | 215 | clean: |
b7a11ec2 | 216 | -rm -f *.o *~ \#* core $(STAGESTUFF) TAGS binutils.?? binutils.??? |
99a42820 RP |
217 | |
218 | etags tags: TAGS | |
219 | ||
6a3958b2 | 220 | TAGS: force |
99a42820 RP |
221 | etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc] |
222 | ||
223 | realclean: clean | |
a01bf1fb | 224 | -rm -f $(STAGESTUFF) TAGS |
99a42820 RP |
225 | |
226 | install: $(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 |
236 | dist: $(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 |
246 | alloca.o:alloca.c | |
a26878d1 | 247 | am29k-pinsn.o: am29k-pinsn.c |
99a42820 | 248 | ar.o: ar.c |
d7cce023 JG |
249 | bucomm.o: bucomm.c |
250 | copy.o: copy.c | |
251 | cplus-dem.o:cplus-dem.c | |
252 | filemode.o:filemode.c | |
a10d26a1 RP |
253 | getopt.o:getopt.c |
254 | getopt1.o:getopt1.c | |
d7cce023 JG |
255 | gmalloc.o:gmalloc.c |
256 | i960-pinsn.o: i960-pinsn.c | |
257 | is-ranlib.o:is-ranlib.c | |
258 | m68k-pinsn.o: m68k-pinsn.c | |
259 | maybe-ranlib.o:maybe-ranlib.c | |
260 | nm.o: nm.c | |
261 | not-ranlib.o:not-ranlib.c | |
262 | objdump.o: objdump.c | |
263 | size.o: size.c | |
264 | sparc-pinsn.o: sparc-pinsn.c | |
265 | strip.o:strip.c | |
266 | version.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 | ||
274 | ver960.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 | 281 | force: |
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 | # | |
289 | make: | |
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 | 305 | Makefile: $(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 |