1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
4 # This file is part of GNU binutils.
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 target_alias = @target_alias@
26 program_transform_name = @program_transform_name@
27 exec_prefix = @exec_prefix@
28 bindir = $(exec_prefix)/bin
29 libdir = $(exec_prefix)/lib
30 tooldir = $(exec_prefix)/$(target_alias)
32 datadir = $(prefix)/lib
33 mandir = $(prefix)/man
34 man1dir = $(mandir)/man1
35 man2dir = $(mandir)/man2
36 man3dir = $(mandir)/man3
37 man4dir = $(mandir)/man4
38 man5dir = $(mandir)/man5
39 man6dir = $(mandir)/man6
40 man7dir = $(mandir)/man7
41 man8dir = $(mandir)/man8
42 man9dir = $(mandir)/man9
43 infodir = $(prefix)/info
44 includedir = $(prefix)/include
45 docdir = $(datadir)/doc
49 INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
50 INSTALL_PROGRAM = $(INSTALL)
51 INSTALL_DATA = $(INSTALL) -m 644
52 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
53 INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1 -m 644
66 CC_FOR_BUILD = @CC_FOR_BUILD@
71 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
72 # Comment these out if using lex.
74 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
76 # Distribution version
79 DIST_NAME=binutils-${VERSION}
81 version=`./../gcc/gcc -dumpversion`
83 # Where to find texinfo.tex to format docn with TeX
84 TEXIDIR = $(srcdir)/../texinfo
88 # these two are almost the same program
92 # objcopy and strip should be the same program
98 # These should all be the same program too.
103 # This is the demangler, as a standalone program.
104 # Note: This one is used as the installed name too, unlike the above.
105 DEMANGLER_PROG=c++filt
110 SRCONV_PROG=srconv sysdump coffdump
114 MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
116 PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@
117 STAGESTUFF = $(PROGS) *.o
118 # Files that can be generated, but should be in the distribution.
119 # Don't build $(DEMANGLER_PROG).1, since its name may vary with the
121 DISTSTUFF=arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h syslex.c
123 # Stuff that goes in tooldir/ if appropriate
124 TOOL_PROGS = nm.new strip.new ar ranlib $(DLLTOOL)
126 BASEDIR = $(srcdir)/..
127 BFDDIR = $(BASEDIR)/bfd
128 INCDIR = $(BASEDIR)/include
129 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
131 @target_makefile_fragment@
133 ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
136 $(CC) -c $(ALL_CFLAGS) $<
139 ## Random definitions
140 # Hopefully all these may be flushed once we get configuration down pat.
142 # alloca only needed for systems which don't have it and when cc != gcc.
145 # nm tries to malloc enough space for the string table. The old GNU malloc
146 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
147 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
148 # there is enough memory. So use the new GNU malloc.
150 # Use this if the system malloc is good enough.
153 # Use the GNU getopt unless you have problems with it.
154 # The IRIS version could probably benefit from being assembled with
155 # libmalloc rather than the ordinary malloc.
156 LIBIBERTY = ../libiberty/libiberty.a
158 # Code shared by all the binutils.
159 BULIBS = bucomm.o version.o filemode.o
161 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
163 BFD = ../bfd/libbfd.a
164 OPCODES = ../opcodes/libopcodes.a
166 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
167 echo $${rootme}/../expect/expect ; \
168 else echo expect ; fi`
169 RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
170 echo ${srcdir}/../dejagnu/runtest ; \
171 else echo runtest ; fi`
177 "RUNTEST=$(RUNTEST)" \
178 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
182 all: $(ADDL_LIBS) $(PROGS)
184 # These targets are for the dejagnu testsuites. The file site.exp
185 # contains global variables that all the testsuites will use.
187 site.exp: ./config.status Makefile
188 @echo "Making a new config file..."
191 @mv site.exp site.bak
192 @echo "## variables are automatically generated by make ##" > ./tmp0
193 @echo "# Do not edit here. If you wish to override these" >> ./tmp0
194 @echo "# values, add them to the last section" >> ./tmp0
195 @echo "# HOST AND TARGET INFO" >> ./tmp0
196 @echo "set host_os @host_os@" >> ./tmp0
197 @echo "set host_alias @host_alias@" >> ./tmp0
198 @echo "set host_cpu @host_cpu@" >> ./tmp0
199 @echo "set host_vendor @host_vendor@" >> ./tmp0
200 @echo "set target_os @target_os@" >> ./tmp0
201 @echo "set target_alias @target_alias@" >> ./tmp0
202 @echo "set target_cpu @target_cpu@" >> ./tmp0
203 @echo "set target_vendor @target_vendor@" >> ./tmp0
204 @echo "set host_triplet @host@" >> ./tmp0
205 @echo "set target_triplet @target@" >> ./tmp0
206 @echo "# DIRECTORY INFO" >> ./tmp0
207 @echo "set objdir `pwd`" >> ./tmp0
209 @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0
210 @cat ./tmp0 > site.exp
211 @cat site.bak | sed \
212 -e '1,/^## Variables generated by.*##/ d' >> site.exp
216 rootme=`pwd`; export rootme ; \
217 srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
218 EXPECT=${EXPECT} ; export EXPECT ; \
219 if [ -f $$rootme/../expect/expect ] ; then \
220 TCL_LIBRARY=$${srcroot}/../tcl/library ; \
221 export TCL_LIBRARY ; else true; fi ; \
222 $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
226 /bin/sh $(srcdir)/sanity.sh $(bindir)
232 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
233 $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
235 $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
236 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
238 $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
239 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
241 $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
242 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
244 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
245 $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
247 $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES)
248 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
250 underscore.c: Makefile
252 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
253 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
254 mv -f underscore.t underscore.c
256 version.o: version.c Makefile
257 $(CC) -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) -c $(srcdir)/version.c
259 cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
260 $(CC) -c -DMAIN -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
262 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o
263 $(CC) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
266 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
267 mv -f y.tab.c arparse.c
268 mv -f y.tab.h arparse.h
270 # Separate from arparse.c so that a parallel make doesn't try to build
271 # both arparse.c and arparse.h simultaneously.
275 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
278 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
279 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
281 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
282 $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
284 # This rule creates a single binary that switches between ar and ranlib
285 # by looking at argv[0]. Use this kludge to save some disk space.
286 # However, you have to install things by hand.
287 # (That is after 'make install', replace the installed ranlib by a link to ar.)
289 # Alternatively, you can install ranlib.sh as ranlib.
291 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
292 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
293 -rm -f $(RANLIB_PROG)
294 -ln $(AR_PROG) $(RANLIB_PROG)
296 # objcopy and strip in one binary that uses argv[0] to decide its action.
298 objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
299 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
301 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
303 sysroff.c: sysinfo sysroff.info
304 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
305 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
306 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
308 sysroff.h: sysinfo sysroff.info
309 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
311 # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
313 sysinfo.c: sysinfo.y arparse.c
314 $(BISON) -tvd $(srcdir)/sysinfo.y
316 mv -f y.tab.c sysinfo.c
317 mv -f y.tab.h sysinfo.h
319 # Separate from sysinfo.c so that a parallel make doesn't try to build
320 # both sysinfo.c and sysinfo.h simultaneously.
324 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
327 sysinfo: sysinfo.o syslex.o
328 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
330 syslex.o: syslex.c sysinfo.h
331 if [ -r syslex.c ]; then \
332 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
334 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/syslex.c ;\
338 if [ -r sysinfo.c ]; then \
339 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
341 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
344 srconv.o: srconv.c sysroff.h sysroff.c coffgrok.h $(INCDIR)/coff/internal.h \
345 ../bfd/libcoff.h config.h
347 srconv: srconv.o coffgrok.o $(ADDL_LIBS)
348 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
350 dlltool:dlltool.o defparse.o deflex.o
351 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS)
353 defparse.c:defparse.y
354 $(BISON) $(BISONFLAGS) $(srcdir)/defparse.y
355 mv -f y.tab.c defparse.c
356 mv -f y.tab.h defparse.h
358 defparse.h: defparse.c
361 $(LEX) $(LEX_OPTIONS) $(srcdir)/deflex.l
365 $(CC) -c @DLLTOOL_DEFS@ $(ALL_CFLAGS) $(srcdir)/dlltool.c
367 coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
368 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
370 sysdump.o: sysdump.c sysroff.h sysroff.c bucomm.h config.h
372 sysdump: sysdump.o $(ADDL_LIBS)
373 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
375 # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
377 nlmheader.c: nlmheader.y sysinfo.c
378 $(BISON) $(srcdir)/nlmheader.y
380 mv -f y.tab.c nlmheader.c
383 ldname=`echo ld | sed '$(program_transform_name)'`; \
384 $(CC) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(ALL_CFLAGS) $(srcdir)/nlmconv.c
386 $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
387 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
389 # This list of dependencies was generated by doing a make with gcc -MM
390 # saving the output in a file and removing the gcc commands
391 # changing "../../devo/binutils/../bfd" to "$(BFDDIR)"
392 # removing "../../devo/binutils/"
393 # changing "../include" to "$(INCDIR)"
395 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
396 $(INCDIR)/obstack.h \
397 $(INCDIR)/fopen-same.h bucomm.h config.h
398 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
399 $(INCDIR)/obstack.h \
400 $(INCDIR)/fopen-same.h
401 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
402 $(INCDIR)/obstack.h \
403 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h config.h
404 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
405 $(INCDIR)/obstack.h \
406 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
407 $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \
408 $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def config.h
409 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
410 $(INCDIR)/obstack.h \
411 $(INCDIR)/fopen-same.h bucomm.h config.h $(INCDIR)/getopt.h \
412 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
413 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h
414 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
415 $(INCDIR)/obstack.h \
416 $(INCDIR)/fopen-same.h bucomm.h config.h $(INCDIR)/aout/ar.h \
417 $(BFDDIR)/libbfd.h arsup.h
418 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
419 $(INCDIR)/obstack.h arsup.h
420 arlex.o: arlex.c ./arparse.h
421 not-ranlib.o: not-ranlib.c
422 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
423 $(INCDIR)/obstack.h arsup.h bucomm.h config.h
424 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
425 $(INCDIR)/obstack.h bucomm.h config.h
426 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
427 $(INCDIR)/obstack.h \
428 $(INCDIR)/fopen-same.h bucomm.h config.h
429 is-strip.o: is-strip.c
430 is-ranlib.o: is-ranlib.c
431 not-strip.o: not-strip.c
432 nlmheader.o: nlmheader.c ../bfd/bfd.h \
433 $(INCDIR)/fopen-same.h bucomm.h config.h \
434 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
435 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h \
436 $(INCDIR)/fopen-same.h bucomm.h config.h \
437 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
438 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \
439 $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
443 - mv -f $(STAGESTUFF) stage1
447 - mv -f $(STAGESTUFF) stage2
451 - mv -f $(STAGESTUFF) stage3
456 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
459 - (cd stage1 ; mv -f * ..)
463 - (cd stage2 ; mv -f * ..)
467 - (cd stage3 ; mv -f * ..)
471 # DOCUMENTATION TARGETS
472 config.texi: Makefile
474 echo '@set VERSION $(VERSION)' > config.texi
476 binutils.dvi: $(srcdir)/binutils.texi config.texi
477 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
479 # info file for online browsing
480 binutils.info: $(srcdir)/binutils.texi config.texi
481 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
483 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
484 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
485 > $(DEMANGLER_PROG).1
487 # different targets for -ms, -mm, -me
488 # Try to use a recent texi2roff. v2 was put on prep in jan91.
489 # If you want an index, see texi2roff doc for postprocessing
490 # and add -i to texi2roff invocations below.
491 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
492 # corresponding -e lines when later texi2roff's are current)
493 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
494 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
495 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
496 # + @alphaenumerate is ridiculously new, turned into @enumerate
499 binutils.ms: $(srcdir)/binutils.texi
500 sed -e '/\\input texinfo/d' \
501 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
502 -e '/^@ifinfo/,/^@end ifinfo/d' \
506 -e 's/^@alphaenumerate/@enumerate/g' \
507 -e 's/^@end alphaenumerate/@end enumerate/g' \
508 $(srcdir)/binutils.texi | \
510 sed -e 's/---/\\(em/g' \
514 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
515 # try leaving them in
516 binutils.mm: $(srcdir)/binutils.texi
517 sed -e '/\\input texinfo/d' \
518 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
519 -e '/^@ifinfo/,/^@end ifinfo/d' \
524 -e 's/^@alphaenumerate/@enumerate/g' \
525 -e 's/^@end alphaenumerate/@end enumerate/g' \
526 $(srcdir)/binutils.texi | \
528 sed -e 's/---/\\(em/g' \
532 binutils.me: $(srcdir)/binutils.texi
533 sed -e '/\\input texinfo/d' \
534 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
535 -e '/^@ifinfo/,/^@end ifinfo/d' \
539 -e 's/^@alphaenumerate/@enumerate/g' \
540 -e 's/^@end alphaenumerate/@end enumerate/g' \
541 $(srcdir)/binutils.texi | \
543 sed -e 's/---/\\(em/g' \
550 -rm -f *.o *~ \#* core binutils.?? binutils.??? y.output config.log
553 -rm -f $(PROGS) underscore.c sysroff sysroff.c sysroff.h sysinfo
555 -rm -f Makefile config.status *.o *~ \#* core y.* \
556 binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
557 -rm -f $(PROGS) underscore.c config.cache
558 realclean: clean distclean
559 -rm -f $(DISTSTUFF) *.info TAGS
564 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
566 install: all $(DEMANGLER_PROG).1
567 for i in $(PROGS) ; do \
568 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
570 for i in $(MANPAGES) ; do \
571 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
573 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1
574 -if [ -d $(tooldir) ]; then \
575 if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
576 for i in $(TOOL_PROGS) ; do \
577 j=`echo $$i | sed -e 's/.new//'`; \
578 rm -f $(tooldir)/bin/$$j; \
579 k=`echo $$j | sed '$(program_transform_name)'`; \
580 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
581 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
585 # This little path search is required because in the FSF net releases,
586 # the info files are included in the source tree, and that may not be
587 # the same as the build directory.
588 install-info: binutils.info
589 if [ -r binutils.info ]; then \
594 for i in `cd $$dir; echo binutils.info*` ; do \
595 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
602 # cvs rtag binutils-x-yy ld+utils
603 # cvs co -r binutils-x-yy ld+utils
605 # cd {HERE}; make dist [-f Makefile.in]
607 dist: $(DIST_NAME).tar.z
609 diststuff: $(DISTSTUFF) info
612 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
613 make diststuff -f Makefile.in
614 cd ../ld; make diststuff -f Makefile.in
615 cd ../gprof; make diststuff -f Makefile.in
616 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
617 # Take out texinfo from configurable dirs
618 mv ../configure.in tmp; \
619 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
620 cd ..; chmod og=u `find . -print`
621 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
622 rm -rf ../../$(DIST_NAME)
624 #-----------------------------------------------------------------------------
625 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
627 # 'VERSION' file must be present and contain a string of the form "x.y"
628 #-----------------------------------------------------------------------------
632 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
635 # Dummy target to force execution of dependent targets.
639 # Target to uncomment host-specific lines in this makefile. Such lines must
640 # have the following string beginning in column 1: #__<hostname>__#
641 # Original Makefile is backed up as 'Makefile.old'.
643 # Invoke with: make make HOST=xxx
646 -@if test $(HOST)x = x ; then \
647 echo '
\aSpecify "make make HOST=???"'; \
650 grep -s "^#The next line was generated by 'make make'" Makefile; \
651 if test $$? = 0 ; then \
652 echo "
\aMakefile has already been processed with 'make make'";\
655 mv -f Makefile Makefile.old; \
656 echo "#The next line was generated by 'make make'" >Makefile ; \
657 echo "HOST=$(HOST)" >>Makefile ; \
659 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
661 Makefile: Makefile.in config.status
662 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
664 config.h: stamp-h ; @true
665 stamp-h: config.h.in config.status
666 CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status
668 config.status: configure
669 $(SHELL) ./config.status --recheck
671 ### Local Variables: ***
672 ### mode:fundamental ***
673 ### page-delimiter: "^#
\f" ***