* Makefile.in: (ALLOCA, MALLOC): Remove variables.
[deliverable/binutils-gdb.git] / binutils / Makefile.in
1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1992, 1993, 1994, 1995, 1996 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 VPATH = @srcdir@
21 srcdir = @srcdir@
22
23 target_alias = @target_alias@
24 prefix = @prefix@
25
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)
31
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
46
47 SHELL = /bin/sh
48
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
54
55 AR = ar
56 AR_FLAGS = rc
57 CC = @CC@
58 CFLAGS = @CFLAGS@
59 LDFLAGS = @LDFLAGS@
60 MAKEINFO = makeinfo
61 TEXI2DVI = texi2dvi
62 RANLIB = ranlib
63 BISONFLAGS = -d
64 TEXI2ROFF=texi2roff
65 MAKEOVERRIDES=
66 CC_FOR_BUILD = @CC_FOR_BUILD@
67 NM_FOR_TARGET = nm
68 NM = $(NM_FOR_TARGET)
69 SYMLINK = ln -s
70
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.
73 LEX_OPTIONS = -I -Cem
74 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
75
76 # Distribution version
77 VERSION=cygnus-2.6
78 # Distribution name
79 DIST_NAME=binutils-${VERSION}
80
81 # Where to find texinfo.tex to format docn with TeX
82 TEXIDIR = $(srcdir)/../texinfo
83
84 #CC=gcc -Wall
85 CC=cc
86 # these two are almost the same program
87 AR_PROG=ar
88 RANLIB_PROG=ranlib
89
90 # objcopy and strip should be the same program
91 OBJCOPY_PROG=objcopy
92 STRIP_PROG=strip.new
93
94 STRINGS_PROG=strings
95
96 # These should all be the same program too.
97 SIZE_PROG=size
98 NM_PROG=nm.new
99 OBJDUMP_PROG=objdump
100
101 # This is the demangler, as a standalone program.
102 # Note: This one is used as the installed name too, unlike the above.
103 DEMANGLER_PROG=c++filt
104
105 NLMCONV_PROG=nlmconv
106 DLLTOOL_PROG=dlltool
107
108 SRCONV_PROG=srconv sysdump coffdump
109
110 MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
111
112 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@
113 STAGESTUFF = $(PROGS) *.o
114 # Files that can be generated, but should be in the distribution.
115 # Don't build $(DEMANGLER_PROG).1, since its name may vary with the
116 # configuration.
117 DISTSTUFF=arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h syslex.c
118
119 # Stuff that goes in tooldir/ if appropriate
120 TOOL_PROGS = nm.new strip.new ar ranlib $(DLLTOOL_PROG)
121
122 BASEDIR = $(srcdir)/..
123 BFDDIR = $(BASEDIR)/bfd
124 INCDIR = $(BASEDIR)/include
125 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
126 DEP = mkdep
127
128 ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
129
130 HFILES = arsup.h bucomm.h budbg.h coffgrok.h debug.h nlmconv.h
131
132 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h
133
134 CFILES = ar.c arsup.c bucomm.c coffdump.c coffgrok.c debug.c dlltool.c \
135 filemode.c ieee.c is-ranlib.c is-strip.c maybe-ranlib.c \
136 maybe-strip.c nlmconv.c nm.c not-ranlib.c not-strip.c \
137 objcopy.c objdump.c prdbg.c rddbg.c size.c srconv.c stabs.c \
138 strings.c sysdump.c version.c
139
140 GENERATED_CFILES = \
141 underscore.c arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
142 defparse.c deflex.c nlmheader.c
143
144 .c.o:
145 $(CC) -c $(ALL_CFLAGS) $<
146
147 DEBUG_OBJS = rddbg.o debug.o stabs.o ieee.o prdbg.o
148
149 LIBIBERTY = ../libiberty/libiberty.a
150
151 # Code shared by all the binutils.
152 BULIBS = bucomm.o version.o filemode.o
153
154 ADDL_LIBS = $(BULIBS) $(BFD) $(LIBIBERTY)
155
156 BFD = ../bfd/libbfd.a
157 OPCODES = ../opcodes/libopcodes.a
158
159 EXPECT = `if [ -f $$r/../expect/expect ] ; then \
160 echo $$r/../expect/expect ; \
161 else echo expect ; fi`
162 RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
163 echo ${srcdir}/../dejagnu/runtest ; \
164 else echo runtest ; fi`
165 RUNTESTFLAGS =
166
167 CC_FOR_TARGET = ` \
168 if [ -f $$r/../gcc/xgcc ] ; then \
169 if [ -f $$r/../newlib/Makefile ] ; then \
170 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
171 else \
172 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
173 fi; \
174 else \
175 if [ "@host@" = "@target@" ] ; then \
176 echo $(CC); \
177 else \
178 echo gcc | sed '$(program_transform_name)'; \
179 fi; \
180 fi`
181
182 FLAGS_TO_PASS = \
183 "CC=$(CC)" \
184 "CFLAGS=$(CFLAGS)" \
185 "RUNTEST=$(RUNTEST)" \
186 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
187 #\f
188 ## The rules
189
190 all: $(ADDL_LIBS) $(PROGS)
191
192 # These targets are for the dejagnu testsuites. The file site.exp
193 # contains global variables that all the testsuites will use.
194
195 site.exp: ./config.status Makefile
196 @echo "Making a new config file..."
197 @rm -f ./tmp?
198 @touch site.exp
199 @mv site.exp site.bak
200 @echo "## variables are automatically generated by make ##" > ./tmp0
201 @echo "# Do not edit here. If you wish to override these" >> ./tmp0
202 @echo "# values, add them to the last section" >> ./tmp0
203 @echo "# HOST AND TARGET INFO" >> ./tmp0
204 @echo "set host_os @host_os@" >> ./tmp0
205 @echo "set host_alias @host_alias@" >> ./tmp0
206 @echo "set host_cpu @host_cpu@" >> ./tmp0
207 @echo "set host_vendor @host_vendor@" >> ./tmp0
208 @echo "set target_os @target_os@" >> ./tmp0
209 @echo "set target_alias @target_alias@" >> ./tmp0
210 @echo "set target_cpu @target_cpu@" >> ./tmp0
211 @echo "set target_vendor @target_vendor@" >> ./tmp0
212 @echo "set host_triplet @host@" >> ./tmp0
213 @echo "set target_triplet @target@" >> ./tmp0
214 @echo "# DIRECTORY INFO" >> ./tmp0
215 @echo "set objdir `pwd`" >> ./tmp0
216 @echo "" >> ./tmp0
217 @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0
218 @cat ./tmp0 > site.exp
219 @cat site.bak | sed \
220 -e '1,/^## Variables generated by.*##/ d' >> site.exp
221 -@rm -f ./tmp?
222
223 check: site.exp
224 r=`pwd`; export r ; \
225 srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
226 EXPECT=${EXPECT} ; export EXPECT ; \
227 if [ -f $$r/../expect/expect ] ; then \
228 TCL_LIBRARY=$${srcroot}/../tcl/library ; \
229 export TCL_LIBRARY ; else true; fi ; \
230 $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
231 $(RUNTESTFLAGS) CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)"
232
233 installcheck:
234 /bin/sh $(srcdir)/sanity.sh $(bindir)
235
236 info: binutils.info
237
238 dvi: binutils.dvi
239
240 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
241 $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
242
243 $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(DEBUG_OBJS) $(BFD)
244 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
245
246 $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
247 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
248
249 $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(DEBUG_OBJS) $(BFD)
250 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
251
252 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
253 $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
254
255 $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(DEBUG_OBJS) $(BFD) $(OPCODES)
256 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DEBUG_OBJS) $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
257
258 underscore.c: stamp-under ; @true
259
260 stamp-under: Makefile
261 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
262 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
263 $(srcdir)/../move-if-change underscore.t underscore.c
264 touch stamp-under
265
266 version.o: version.c Makefile
267 $(CC) -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) -c $(srcdir)/version.c
268
269 cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
270 $(CC) -c -DMAIN -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
271
272 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o $(DEMANGLER_PROG).1
273 $(CC) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
274
275 arparse.c: arparse.y
276 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
277 mv -f y.tab.c arparse.c
278 mv -f y.tab.h arparse.h
279
280 # Separate from arparse.c so that a parallel make doesn't try to build
281 # both arparse.c and arparse.h simultaneously.
282 arparse.h: arparse.c
283
284 arlex.c: arlex.l
285 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
286 mv lex.yy.c arlex.c
287
288 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
289 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
290
291 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
292 $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
293
294 # This rule creates a single binary that switches between ar and ranlib
295 # by looking at argv[0]. Use this kludge to save some disk space.
296 # However, you have to install things by hand.
297 # (That is after 'make install', replace the installed ranlib by a link to ar.)
298
299 # Alternatively, you can install ranlib.sh as ranlib.
300
301 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
302 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
303 -rm -f $(RANLIB_PROG)
304 -ln $(AR_PROG) $(RANLIB_PROG)
305
306 # objcopy and strip in one binary that uses argv[0] to decide its action.
307
308 objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
309 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
310 -rm -f $(STRIP_PROG)
311 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
312
313 sysroff.c: sysinfo sysroff.info
314 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
315 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
316 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
317
318 sysroff.h: sysinfo sysroff.info
319 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
320
321 # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
322 # simultaneously.
323 sysinfo.c: sysinfo.y arparse.c
324 $(BISON) -tvd $(srcdir)/sysinfo.y
325 rm -f sysinfo.c
326 mv -f y.tab.c sysinfo.c
327 mv -f y.tab.h sysinfo.h
328
329 # Separate from sysinfo.c so that a parallel make doesn't try to build
330 # both sysinfo.c and sysinfo.h simultaneously.
331 sysinfo.h: sysinfo.c
332
333 syslex.c : syslex.l
334 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
335 mv lex.yy.c syslex.c
336
337 sysinfo: sysinfo.o syslex.o
338 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
339
340 syslex.o: syslex.c sysinfo.h
341 if [ -r syslex.c ]; then \
342 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
343 else \
344 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
345 fi
346
347 sysinfo.o: sysinfo.c
348 if [ -r sysinfo.c ]; then \
349 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
350 else \
351 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
352 fi
353
354 srconv: srconv.o coffgrok.o $(ADDL_LIBS)
355 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
356
357 dlltool:dlltool.o defparse.o deflex.o cplus-dem.o
358 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS)
359
360 defparse.c:defparse.y
361 $(BISON) $(BISONFLAGS) $(srcdir)/defparse.y
362 mv -f y.tab.c defparse.c
363 mv -f y.tab.h defparse.h
364
365 defparse.h: defparse.c
366
367 deflex.c:deflex.l
368 $(LEX) $(LEX_OPTIONS) $(srcdir)/deflex.l
369 mv lex.yy.c deflex.c
370
371 dlltool.o:dlltool.c
372 $(CC) -c @DLLTOOL_DEFS@ $(ALL_CFLAGS) $(srcdir)/dlltool.c
373
374 coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
375 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
376
377 sysdump: sysdump.o $(ADDL_LIBS)
378 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
379
380 # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
381 # simultaneously.
382 nlmheader.c: nlmheader.y sysinfo.c
383 $(BISON) $(srcdir)/nlmheader.y
384 rm -f nlmheader.c
385 mv -f y.tab.c nlmheader.c
386
387 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
388 # scripts, since they are only included conditionally.
389 nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
390 ldname=`echo ld | sed '$(program_transform_name)'`; \
391 $(CC) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(ALL_CFLAGS) $(srcdir)/nlmconv.c
392
393 $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
394 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
395
396 # Targets to rebuild dependencies in this Makefile.
397 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
398 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
399 rm -f .dep1
400 $(MAKE) DEP=$(DEP) .dep1
401 sed -f dep.sed <.dep1 >.dep
402
403 # This rule really wants a mkdep that runs "gcc -MM".
404 .dep1: $(CFILES) $(GENERATED_CFILES)
405 rm -f .dep2
406 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
407 $(DEP) -f .dep2 $(ALL_CFLAGS) $?
408 $(srcdir)/../move-if-change .dep2 .dep1
409
410 dep.sed: dep-in.sed config.status
411 sed <$(srcdir)/dep-in.sed >dep.sed \
412 -e 's!@INCDIR@!$(INCDIR)!' \
413 -e 's!@SRCDIR@!$(srcdir)!'
414
415 dep: .dep
416 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
417 cat .dep >> tmp-Makefile
418 $(srcdir)/../move-if-change tmp-Makefile Makefile
419
420 dep-in: .dep
421 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
422 cat .dep >> tmp-Makefile.in
423 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
424
425 .PHONY: dep dep-in
426
427 ###
428 # DOCUMENTATION TARGETS
429 config.texi: Makefile
430 rm -f config.texi
431 echo '@set VERSION $(VERSION)' > config.texi
432 # TeX output
433 binutils.dvi: $(srcdir)/binutils.texi config.texi
434 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
435
436 # info file for online browsing
437 binutils.info: $(srcdir)/binutils.texi config.texi
438 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
439
440 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
441 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
442 > $(DEMANGLER_PROG).1
443
444 # different targets for -ms, -mm, -me
445 # Try to use a recent texi2roff. v2 was put on prep in jan91.
446 # If you want an index, see texi2roff doc for postprocessing
447 # and add -i to texi2roff invocations below.
448 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
449 # corresponding -e lines when later texi2roff's are current)
450 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
451 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
452 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
453 # + @alphaenumerate is ridiculously new, turned into @enumerate
454
455 # roff output (-ms)
456 binutils.ms: $(srcdir)/binutils.texi
457 sed -e '/\\input texinfo/d' \
458 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
459 -e '/^@ifinfo/,/^@end ifinfo/d' \
460 -e '/^@c/d' \
461 -e 's/{.*,,/{/' \
462 -e 's/@ / /g' \
463 -e 's/^@alphaenumerate/@enumerate/g' \
464 -e 's/^@end alphaenumerate/@end enumerate/g' \
465 $(srcdir)/binutils.texi | \
466 $(TEXI2ROFF) -ms | \
467 sed -e 's/---/\\(em/g' \
468 >binutils.ms
469
470 # roff output (-mm)
471 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
472 # try leaving them in
473 binutils.mm: $(srcdir)/binutils.texi
474 sed -e '/\\input texinfo/d' \
475 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
476 -e '/^@ifinfo/,/^@end ifinfo/d' \
477 -e '/^@c/d' \
478 -e 's/{.*,,/{/' \
479 -e '/@noindent/d' \
480 -e 's/@ / /g' \
481 -e 's/^@alphaenumerate/@enumerate/g' \
482 -e 's/^@end alphaenumerate/@end enumerate/g' \
483 $(srcdir)/binutils.texi | \
484 $(TEXI2ROFF) -mm | \
485 sed -e 's/---/\\(em/g' \
486 >binutils.mm
487
488 # roff output (-me)
489 binutils.me: $(srcdir)/binutils.texi
490 sed -e '/\\input texinfo/d' \
491 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
492 -e '/^@ifinfo/,/^@end ifinfo/d' \
493 -e '/^@c/d' \
494 -e 's/{.*,,/{/' \
495 -e 's/@ / /g' \
496 -e 's/^@alphaenumerate/@enumerate/g' \
497 -e 's/^@end alphaenumerate/@end enumerate/g' \
498 $(srcdir)/binutils.texi | \
499 $(TEXI2ROFF) -me | \
500 sed -e 's/---/\\(em/g' \
501 >binutils.me
502
503
504 ###
505
506 mostlyclean:
507 -rm -f *.o *~ \#* core binutils.?? binutils.??? y.output config.log
508 -rm -rf tmpdir
509 clean: mostlyclean
510 -rm -f $(PROGS) $(DEMANGLER_PROG).1 stamp-under
511 -rm -f underscore.c sysroff sysroff.c sysroff.h sysinfo dep.sed
512 distclean:
513 -rm -f Makefile config.status *.o *~ \#* core y.*
514 -rm -f binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
515 -rm -f $(PROGS) underscore.c config.h stamp-h config.cache config.log
516 -rm -f dep.sed stamp-under
517 maintainer-clean realclean: clean distclean
518 @echo "This command is intended for maintainers to use;"
519 @echo "it deletes files that may require special tools to rebuild."
520 -rm -f $(DISTSTUFF) *.info TAGS
521
522 etags tags: TAGS
523
524 TAGS: force
525 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
526
527 install: all
528 for i in $(PROGS) ; do \
529 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
530 done
531 for i in $(MANPAGES) ; do \
532 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
533 done
534 if [ x$(DEMANGLER_PROG) != x ]; then \
535 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1; \
536 fi
537 -if [ -d $(tooldir) ]; then \
538 if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
539 for i in $(TOOL_PROGS) ; do \
540 if [ -f $$i ]; then \
541 j=`echo $$i | sed -e 's/.new//'`; \
542 rm -f $(tooldir)/bin/$$j; \
543 k=`echo $$j | sed '$(program_transform_name)'`; \
544 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
545 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
546 fi; \
547 done; \
548 else true; fi
549
550 # This little path search is required because in the FSF net releases,
551 # the info files are included in the source tree, and that may not be
552 # the same as the build directory.
553 install-info: binutils.info
554 if [ -r binutils.info ]; then \
555 dir=. ; \
556 else \
557 dir=$(srcdir) ; \
558 fi ; \
559 for i in `cd $$dir; echo binutils.info*` ; do \
560 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
561 done
562
563 clean-info:
564 -rm -rf *.info*
565
566 # Making a dist:
567 # cvs rtag binutils-x-yy ld+utils
568 # cvs co -r binutils-x-yy ld+utils
569 # Sanitize
570 # cd {HERE}; make dist [-f Makefile.in]
571
572 dist: $(DIST_NAME).tar.z
573
574 diststuff: $(DISTSTUFF) info
575
576 $(DIST_NAME).tar.z:
577 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
578 make diststuff -f Makefile.in
579 cd ../ld; make diststuff -f Makefile.in
580 cd ../gprof; make diststuff -f Makefile.in
581 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
582 # Take out texinfo from configurable dirs
583 mv ../configure.in tmp; \
584 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
585 cd ..; chmod og=u `find . -print`
586 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
587 rm -rf ../../$(DIST_NAME)
588
589 #-----------------------------------------------------------------------------
590 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
591 #
592 # 'VERSION' file must be present and contain a string of the form "x.y"
593 #-----------------------------------------------------------------------------
594
595 ver960.c: FORCE
596 rm -f ver960.c
597 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
598
599
600 # Dummy target to force execution of dependent targets.
601 #
602 force:
603
604 # Target to uncomment host-specific lines in this makefile. Such lines must
605 # have the following string beginning in column 1: #__<hostname>__#
606 # Original Makefile is backed up as 'Makefile.old'.
607 #
608 # Invoke with: make make HOST=xxx
609 #
610 make:
611 -@if test $(HOST)x = x ; then \
612 echo '\aSpecify "make make HOST=???"'; \
613 exit 1; \
614 fi ; \
615 grep -s "^#The next line was generated by 'make make'" Makefile; \
616 if test $$? = 0 ; then \
617 echo "\aMakefile has already been processed with 'make make'";\
618 exit 1; \
619 fi ; \
620 mv -f Makefile Makefile.old; \
621 echo "#The next line was generated by 'make make'" >Makefile ; \
622 echo "HOST=$(HOST)" >>Makefile ; \
623 echo >>Makefile ; \
624 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
625
626 Makefile: Makefile.in config.status
627 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
628
629 config.h: stamp-h ; @true
630 stamp-h: config.in config.status
631 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
632
633 config.status: configure
634 $(SHELL) ./config.status --recheck
635
636 # What appears below is generated by a hacked mkdep using gcc -MM.
637
638 # DO NOT DELETE THIS LINE -- mkdep uses it.
639 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
640
641 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
642 $(INCDIR)/libiberty.h $(INCDIR)/progress.h bucomm.h \
643 config.h $(INCDIR)/fopen-same.h $(INCDIR)/aout/ar.h \
644 ../bfd/libbfd.h arsup.h
645 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
646 $(INCDIR)/obstack.h arsup.h $(INCDIR)/libiberty.h bucomm.h \
647 config.h $(INCDIR)/fopen-same.h
648 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
649 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
650 config.h $(INCDIR)/fopen-same.h
651 coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
652 $(INCDIR)/fopen-same.h
653 coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/fopen-same.h \
654 $(INCDIR)/coff/internal.h ../bfd/libcoff.h $(INCDIR)/bfdlink.h \
655 coffgrok.h
656 debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
657 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
658 $(INCDIR)/libiberty.h debug.h
659 dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
660 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
661 config.h $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
662 $(INCDIR)/demangle.h
663 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
664 $(INCDIR)/obstack.h
665 ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
666 $(INCDIR)/ieee.h bucomm.h config.h $(INCDIR)/fopen-same.h \
667 $(INCDIR)/libiberty.h debug.h budbg.h
668 is-ranlib.o: is-ranlib.c
669 is-strip.o: is-strip.c
670 maybe-ranlib.o: maybe-ranlib.c
671 maybe-strip.o: maybe-strip.c
672 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
673 $(INCDIR)/obstack.h $(INCDIR)/libiberty.h bucomm.h \
674 config.h $(INCDIR)/fopen-same.h ../bfd/libnlm.h $(INCDIR)/nlm/common.h \
675 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h
676 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
677 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
678 $(INCDIR)/getopt.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
679 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
680 not-ranlib.o: not-ranlib.c
681 not-strip.o: not-strip.c
682 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
683 $(INCDIR)/obstack.h $(INCDIR)/progress.h bucomm.h config.h \
684 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
685 budbg.h
686 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
687 $(INCDIR)/obstack.h $(INCDIR)/getopt.h $(INCDIR)/progress.h \
688 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h \
689 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
690 $(INCDIR)/aout/stab.def
691 prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
692 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
693 $(INCDIR)/libiberty.h debug.h budbg.h
694 rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
695 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
696 $(INCDIR)/libiberty.h debug.h budbg.h
697 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
698 $(INCDIR)/getopt.h bucomm.h config.h $(INCDIR)/fopen-same.h \
699 $(INCDIR)/libiberty.h
700 srconv.o: srconv.c bucomm.h config.h $(INCDIR)/fopen-same.h \
701 sysroff.h coffgrok.h $(INCDIR)/coff/internal.h ../bfd/libcoff.h \
702 $(INCDIR)/bfdlink.h sysroff.c
703 stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
704 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
705 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
706 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
707 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
708 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
709 $(INCDIR)/libiberty.h
710 sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
711 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
712 sysroff.h sysroff.c
713 version.o: version.c
714 underscore.o: underscore.c
715 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
716 $(INCDIR)/obstack.h bucomm.h config.h $(INCDIR)/fopen-same.h \
717 arsup.h
718 arlex.o: arlex.c arparse.h
719 sysroff.o: sysroff.c
720 sysinfo.o: sysinfo.c
721 syslex.o: syslex.c sysinfo.h
722 defparse.o: defparse.c
723 deflex.o: deflex.c defparse.h
724 nlmheader.o: nlmheader.c ../bfd/bfd.h $(INCDIR)/obstack.h \
725 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h \
726 $(INCDIR)/nlm/internal.h nlmconv.h
727
728 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.048934 seconds and 5 git commands to generate.