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