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