0bb07bef6eb0ee9e17fd435330a52bbc2713490a
[external/binutils.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.4.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 #CC=gcc -Wall
83 CC=cc
84 # these two are almost the same program
85 AR_PROG=ar
86 RANLIB_PROG=ranlib
87
88 # objcopy and strip should be the same program
89 OBJCOPY_PROG=objcopy
90 STRIP_PROG=strip.new
91
92 STRINGS_PROG=strings
93
94 # These should all be the same program too.
95 SIZE_PROG=size
96 NM_PROG=nm.new
97 OBJDUMP_PROG=objdump
98
99 # This is the demangler, as a standalone program.
100 # Note: This one is used as the installed name too, unlike the above.
101 DEMANGLER_PROG=c++filt
102
103 NLMCONV_PROG=nlmconv
104
105 SRCONV_PROG=srconv sysdump coffdump 
106
107 MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
108
109 PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG) 
110 STAGESTUFF = $(PROGS) *.o
111 # Files that can be generated, but should be in the distribution.
112 DISTSTUFF=arparse.c arlex.c nlmheader.c sysinfo.c syslex.c info
113
114 # Stuff that goes in tooldir/ if appropriate
115 TOOL_PROGS = nm.new strip.new ar ranlib
116
117 BASEDIR = $(srcdir)/..
118 BFDDIR = $(BASEDIR)/bfd
119 INCDIR  = $(BASEDIR)/include
120 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
121
122 #### host and target dependant Makefile fragments come in here.
123 ###
124
125 ALL_CFLAGS = $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS)
126
127 .c.o:
128         $(CC) -c $(ALL_CFLAGS) $<
129
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
142 # Use this if the system malloc is good enough.
143 MALLOC =
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.
148 LIBIBERTY = ../libiberty/libiberty.a
149
150 # Code shared by all the binutils.
151 BULIBS = bucomm.o version.o filemode.o
152
153 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY) 
154
155 BFD = ../bfd/libbfd.a
156 OPCODES = ../opcodes/libopcodes.a
157
158 RUNTEST = runtest
159 RUNTESTFLAGS = 
160 FLAGS_TO_PASS = \
161         "CC=$(CC)" \
162         "CFLAGS=$(CFLAGS)" \
163         "RUNTEST=$(RUNTEST)" \
164         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
165
166 #\f
167 ## The rules
168
169 all: $(ADDL_LIBS) $(PROGS)
170
171 testsuite:
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)); \
176         else true ; fi
177
178 check: force
179         rootme=`pwd`; export rootme; cd testsuite ; \
180         $(MAKE) check $(FLAGS_TO_PASS)
181
182 installcheck:
183         /bin/sh $(srcdir)/sanity.sh $(bindir)
184
185 info: binutils.info
186
187 dvi: binutils.dvi
188
189 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
190         $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
191
192 $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
193         $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
194
195 $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
196         $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
197
198 $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
199         $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
200
201 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
202         $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
203
204 $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES)
205         $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
206
207 underscore.c: Makefile
208         rm -f underscore.c
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
212
213 version.o: version.c
214         $(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' $(CFLAGS) -c $(srcdir)/version.c
215
216 cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
217         $(CC) -c -DMAIN $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
218
219 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o version.o
220         $(CC) $(CFLAGS) $(LDFLAGS)  -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o version.o
221
222 arparse.h arparse.c: arparse.y
223         $(BISON) $(BISONFLAGS)  $(srcdir)/arparse.y
224         -mv y.tab.c arparse.c
225         -mv y.tab.h arparse.h
226
227 arlex.c: arlex.l
228         $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
229         mv lex.yy.c arlex.c
230
231 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
232         $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
233
234 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
235         $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
236
237 # This rule creates a single binary that switches between ar and ranlib
238 # by looking at argv[0].  Use this kludge to save some disk space.
239 # However, you have to install things by hand.
240 # (That is after 'make install', replace the installed ranlib by a link to ar.)
241
242 # Alternatively, you can install ranlib.sh as ranlib.
243
244 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
245         $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
246         -rm -f $(RANLIB_PROG)
247         -ln $(AR_PROG) $(RANLIB_PROG)
248
249 # objcopy and strip in one binary that uses argv[0] to decide its action.
250
251 objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
252         $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
253         -rm -f $(STRIP_PROG)
254         -ln $(OBJCOPY_PROG) $(STRIP_PROG)
255
256 sysroff.c: sysinfo sysroff.info 
257         ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
258         ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
259         ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
260         ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h 
261
262 sysinfo.h sysinfo.c: sysinfo.y 
263         $(BISON) -tvd $(srcdir)/sysinfo.y
264         rm -f sysinfo.c
265         -mv y.tab.c sysinfo.c
266         -mv y.tab.h sysinfo.h
267
268 syslex.c : syslex.l
269         $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
270         mv lex.yy.c syslex.c
271         
272 sysinfo: sysinfo.o syslex.o $(ADDL_LIBS)
273         $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o 
274
275 syslex.o: syslex.c sysinfo.h
276         $(CC_FOR_BUILD) -c -I. $(CFLAGS)  syslex.c 
277
278 sysinfo.o: sysinfo.c
279         $(CC_FOR_BUILD) -c -I. $(CFLAGS)  sysinfo.c 
280
281 srconv: sysroff.c srconv.o sysroff.c  coffgrok.o $(ADDL_LIBS)
282         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
283
284 coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
285         $(CC) $(CFLAGS) $(LDFLAGS) -o $@  coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
286
287 sysdump: sysroff.c sysdump.o $(ADDL_LIBS)
288         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
289
290 nlmheader.c: nlmheader.y
291         $(BISON) $(srcdir)/nlmheader.y
292         rm -f nlmheader.c
293         -mv y.tab.c nlmheader.c
294
295 nlmconv.o: nlmconv.c
296         ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \
297         $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(srcdir)/nlmconv.c
298
299 $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
300         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
301
302 # This list of dependencies was generated by doing a make with gcc -MM
303 # saving the output in a file and removing the gcc commands
304 # changing "../../devo/binutils/../bfd" to "$(BFDDIR)"
305 # removing "../../devo/binutils/"
306 # changing "../include" to "$(INCDIR)"
307
308 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
309   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
310   $(INCDIR)/fopen-same.h bucomm.h
311 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
312   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
313   $(INCDIR)/fopen-same.h 
314 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
315   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
316   $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h 
317 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
318   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
319   $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
320   $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \
321   $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def 
322 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
323   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
324   $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/getopt.h \
325   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
326   $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h
327 ar.o: ar.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)/aout/ar.h \
330   $(BFDDIR)/libbfd.h arsup.h 
331 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
332   $(INCDIR)/obstack.h arsup.h 
333 arlex.o: arlex.c ./arparse.h 
334 not-ranlib.o: not-ranlib.c 
335 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
336   $(INCDIR)/obstack.h arsup.h bucomm.h 
337 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
338   $(INCDIR)/obstack.h bucomm.h 
339 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
340   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
341   $(INCDIR)/fopen-same.h bucomm.h 
342 is-strip.o: is-strip.c 
343 is-ranlib.o: is-ranlib.c 
344 not-strip.o: not-strip.c 
345 nlmheader.o: nlmheader.c ../bfd/bfd.h ../bfd/sysdep.h \
346   $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
347   $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
348 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h ../bfd/sysdep.h \
349   $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
350   $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
351   $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \
352   $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
353
354 stage1: force
355         - mkdir stage1
356         - mv -f $(STAGESTUFF) stage1
357
358 stage2: force
359         - mkdir stage2
360         - mv -f $(STAGESTUFF) stage2
361
362 stage3: force
363         - mkdir stage3
364         - mv -f $(STAGESTUFF) stage3
365
366 against=stage2
367
368 comparison: force
369         for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
370
371 de-stage1: force
372         - (cd stage1 ; mv -f * ..)
373         - rmdir stage1
374
375 de-stage2: force
376         - (cd stage2 ; mv -f * ..)
377         - rmdir stage2
378
379 de-stage3: force
380         - (cd stage3 ; mv -f * ..)
381         - rmdir stage3
382
383 ######################################################################
384 # DOCUMENTATION TARGETS
385 # TeX output
386 binutils.dvi: $(srcdir)/binutils.texi
387         TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
388
389 # info file for online browsing
390 binutils.info: $(srcdir)/binutils.texi
391         $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
392
393 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
394         sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
395                 > $(DEMANGLER_PROG).1
396
397 #   different targets for -ms, -mm, -me
398 # Try to use a recent texi2roff.  v2 was put on prep in jan91.
399 # If you want an index, see texi2roff doc for postprocessing 
400 # and add -i to texi2roff invocations below.
401 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
402 #    corresponding -e lines when later texi2roff's are current)
403 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
404 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
405 # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
406 # + @alphaenumerate is ridiculously new, turned into @enumerate
407
408 # roff output (-ms)
409 binutils.ms: $(srcdir)/binutils.texi
410         sed -e '/\\input texinfo/d' \
411                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
412                 -e '/^@ifinfo/,/^@end ifinfo/d' \
413                 -e '/^@c/d' \
414                 -e 's/{.*,,/{/' \
415                 -e 's/@ / /g' \
416                 -e 's/^@alphaenumerate/@enumerate/g' \
417                 -e 's/^@end alphaenumerate/@end enumerate/g' \
418                 $(srcdir)/binutils.texi | \
419         $(TEXI2ROFF) -ms | \
420         sed -e 's/---/\\(em/g' \
421         >binutils.ms 
422
423 # roff output (-mm)
424 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, 
425 #   try leaving them in
426 binutils.mm: $(srcdir)/binutils.texi
427         sed -e '/\\input texinfo/d' \
428                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
429                 -e '/^@ifinfo/,/^@end ifinfo/d' \
430                 -e '/^@c/d' \
431                 -e 's/{.*,,/{/' \
432                 -e '/@noindent/d' \
433                 -e 's/@ / /g' \
434                 -e 's/^@alphaenumerate/@enumerate/g' \
435                 -e 's/^@end alphaenumerate/@end enumerate/g' \
436                 $(srcdir)/binutils.texi | \
437         $(TEXI2ROFF) -mm | \
438         sed -e 's/---/\\(em/g' \
439                 >binutils.mm
440
441 # roff output (-me)
442 binutils.me: $(srcdir)/binutils.texi
443         sed -e '/\\input texinfo/d' \
444                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
445                 -e '/^@ifinfo/,/^@end ifinfo/d' \
446                 -e '/^@c/d' \
447                 -e 's/{.*,,/{/' \
448                 -e 's/@ / /g' \
449                 -e 's/^@alphaenumerate/@enumerate/g' \
450                 -e 's/^@end alphaenumerate/@end enumerate/g' \
451                 $(srcdir)/binutils.texi | \
452         $(TEXI2ROFF) -me | \
453         sed -e 's/---/\\(em/g' \
454         >binutils.me 
455
456
457 ######################################################################
458
459 mostlyclean:
460         -rm -f *.o *~ \#* core binutils.?? binutils.???
461 clean: mostlyclean
462         @if [ -d testsuite ] ; then \
463           cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) clean ; \
464         else true; fi
465         -rm -f $(PROGS) underscore.c
466 distclean:
467         @if [ -d testsuite ] ; then \
468           cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) distclean ; \
469         else true; fi
470         -rm -f Makefile config.status sysdep.h *.o *~ \#* core y.* \
471                 binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
472         -rm -f $(PROGS) underscore.c
473 realclean: clean distclean
474         -rm -f $(DISTSTUFF) TAGS
475
476 etags tags: TAGS
477
478 TAGS: force
479         etags $(INCDIR)/*.h $(srcdir)/*.[hc] 
480
481 install: all $(DEMANGLER_PROG).1
482         for i in $(PROGS) ; do \
483           $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
484         done
485         for i in $(MANPAGES) ; do \
486           $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
487         done
488         $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1
489         -if [ -d $(tooldir) ]; then \
490           if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
491           for i in $(TOOL_PROGS) ; 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 `cd $$dir; echo 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