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