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