* coff-tic80.c (tic80_howto_table): Add R_ABS entry.
[deliverable/binutils-gdb.git] / binutils / Makefile.in
1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1992, 93, 94, 95, 96, 1997 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 = @bindir@
29 libdir = @libdir@
30 tooldir = $(exec_prefix)/$(target_alias)
31
32 datadir = @datadir@
33 mandir = @mandir@
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 = @infodir@
44 includedir = @includedir@
45
46 SHELL = /bin/sh
47
48 INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@
50 INSTALL_DATA = @INSTALL_DATA@
51 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
52 INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1 -m 644
53
54 AR = ar
55 AR_FLAGS = rc
56 CC = @CC@
57 CFLAGS = @CFLAGS@
58 LDFLAGS = @LDFLAGS@
59 HLDFLAGS = @HLDFLAGS@
60 HLDENV = @HLDENV@
61 RPATH_ENVVAR = @RPATH_ENVVAR@
62 MAKEINFO = makeinfo
63 TEXI2DVI = texi2dvi
64 RANLIB = ranlib
65 BISONFLAGS = -d
66 TEXI2ROFF=texi2roff
67 MAKEOVERRIDES=
68 CC_FOR_BUILD = @CC_FOR_BUILD@
69 NM_FOR_TARGET = nm
70 NM = $(NM_FOR_TARGET)
71 SYMLINK = ln -s
72
73 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
74 LEX_OPTIONS =
75 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
76
77 # Distribution version
78 VERSION=cygnus-2.7.1
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 # these two are almost the same program
86 AR_PROG=ar
87 RANLIB_PROG=ranlib
88
89 # objcopy and strip should be the same program
90 OBJCOPY_PROG=objcopy
91 STRIP_PROG=strip.new
92
93 STRINGS_PROG=strings
94
95 # These should all be the same program too.
96 SIZE_PROG=size
97 NM_PROG=nm.new
98 OBJDUMP_PROG=objdump
99
100 # This is the demangler, as a standalone program.
101 # Note: This one is used as the installed name too, unlike the above.
102 DEMANGLER_PROG=c++filt
103
104 NLMCONV_PROG=nlmconv
105 DLLTOOL_PROG=dlltool
106
107 SRCONV_PROG=srconv sysdump coffdump
108
109 MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
110
111 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@
112 STAGESTUFF = $(PROGS) *.o
113 # Files that can be generated, but should be in the distribution.
114 # Don't build $(DEMANGLER_PROG).1, since its name may vary with the
115 # configuration.
116 DISTSTUFF=arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
117 syslex.c deflex.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 = -D_GNU_SOURCE $(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 rdcoff.c rddbg.c size.c srconv.c \
138 stabs.c strings.c sysdump.c version.c wrstabs.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 rdcoff.o
148 WRITE_DEBUG_OBJS = $(DEBUG_OBJS) wrstabs.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 $(RPATH_ENVVAR)=$$r/../bfd:$$r/../opcodes:$$$(RPATH_ENVVAR); \
233 export $(RPATH_ENVVAR); \
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 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
249
250 $(OBJCOPY_PROG): $(ADDL_DEPS) objcopy.o not-strip.o $(WRITE_DEBUG_OBJS)
251 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(WRITE_DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
252
253 $(STRINGS_PROG): $(ADDL_DEPS) strings.o
254 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
255
256 $(STRIP_PROG): $(ADDL_DEPS) objcopy.o is-strip.o $(WRITE_DEBUG_OBJS)
257 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(WRITE_DEBUG_OBJS) $(ADDL_LIBS) $(EXTRALIBS)
258
259 $(NM_PROG): $(ADDL_DEPS) nm.o
260 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
261
262 #libbfd is searched twice here ($(BFDLIB) and $(ADDL_LIBS)) because when a
263 #shared libbfd is built with --enable-commonbfdlib, all of libopcodes is
264 #available in libbfd.so and we don't want to link anything from libopcodes.a
265 $(OBJDUMP_PROG): $(ADDL_DEPS) objdump.o prdbg.o $(DEBUG_OBJS) $(OPCODES_DEP)
266 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o prdbg.o $(DEBUG_OBJS) $(BFDLIB) $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
267
268 underscore.c: stamp-under ; @true
269
270 stamp-under: Makefile
271 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
272 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
273 $(srcdir)/../move-if-change underscore.t underscore.c
274 touch stamp-under
275
276 version.o: version.c Makefile
277 $(CC) -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) -c $(srcdir)/version.c
278
279 bucomm.o: bucomm.c Makefile
280 $(CC) -DTARGET='"@target@"' $(ALL_CFLAGS) -c $(srcdir)/bucomm.c
281
282 cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
283 $(CC) -c -DMAIN -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
284
285 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o $(DEMANGLER_PROG).1
286 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
287
288 arparse.c: arparse.y
289 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
290 mv -f y.tab.c arparse.c
291 mv -f y.tab.h arparse.h
292
293 # Separate from arparse.c so that a parallel make doesn't try to build
294 # both arparse.c and arparse.h simultaneously.
295 arparse.h: arparse.c
296
297 arlex.c: arlex.l
298 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
299 mv lex.yy.c arlex.c
300
301 $(AR_PROG): $(ADDL_DEPS) ar.o arparse.o arlex.o not-ranlib.o arsup.o
302 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
303
304 $(RANLIB_PROG): $(ADDL_DEPS) ar.o is-ranlib.o arparse.o arlex.o arsup.o
305 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
306
307 # This rule creates a single binary that switches between ar and ranlib
308 # by looking at argv[0]. Use this kludge to save some disk space.
309 # However, you have to install things by hand.
310 # (That is after 'make install', replace the installed ranlib by a link to ar.)
311
312 # Alternatively, you can install ranlib.sh as ranlib.
313
314 ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
315 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
316 -rm -f $(RANLIB_PROG)
317 -ln $(AR_PROG) $(RANLIB_PROG)
318
319 # objcopy and strip in one binary that uses argv[0] to decide its action.
320
321 objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
322 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
323 -rm -f $(STRIP_PROG)
324 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
325
326 sysroff.c: sysinfo sysroff.info
327 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
328 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
329 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
330
331 sysroff.h: sysinfo sysroff.info
332 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
333
334 # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
335 # simultaneously.
336 sysinfo.c: sysinfo.y arparse.c
337 $(BISON) -tvd $(srcdir)/sysinfo.y
338 rm -f sysinfo.c
339 mv -f y.tab.c sysinfo.c
340 mv -f y.tab.h sysinfo.h
341
342 # Separate from sysinfo.c so that a parallel make doesn't try to build
343 # both sysinfo.c and sysinfo.h simultaneously.
344 sysinfo.h: sysinfo.c
345
346 syslex.c : syslex.l
347 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
348 mv lex.yy.c syslex.c
349
350 sysinfo: sysinfo.o syslex.o
351 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
352
353 syslex.o: syslex.c sysinfo.h
354 if [ -r syslex.c ]; then \
355 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
356 else \
357 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
358 fi
359
360 sysinfo.o: sysinfo.c
361 if [ -r sysinfo.c ]; then \
362 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
363 else \
364 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
365 fi
366
367 srconv: srconv.o coffgrok.o $(ADDL_DEPS)
368 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
369
370 dlltool: dlltool.o defparse.o deflex.o cplus-dem.o $(ADDL_DEPS)
371 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS)
372
373 defparse.c:defparse.y
374 $(BISON) $(BISONFLAGS) $(srcdir)/defparse.y
375 mv -f y.tab.c defparse.c
376 mv -f y.tab.h defparse.h
377
378 defparse.h: defparse.c
379
380 deflex.c:deflex.l
381 $(LEX) $(LEX_OPTIONS) $(srcdir)/deflex.l
382 mv lex.yy.c deflex.c
383
384 dlltool.o:dlltool.c
385 $(CC) -c @DLLTOOL_DEFS@ $(ALL_CFLAGS) $(srcdir)/dlltool.c
386
387 coffdump: coffdump.o coffgrok.o $(ADDL_DEPS)
388 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
389
390 sysdump: sysdump.o $(ADDL_DEPS)
391 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
392
393 # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
394 # simultaneously.
395 nlmheader.c: nlmheader.y sysinfo.c
396 $(BISON) $(srcdir)/nlmheader.y
397 rm -f nlmheader.c
398 mv -f y.tab.c nlmheader.c
399
400 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
401 # scripts, since they are only included conditionally.
402 nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
403 ldname=`echo ld | sed '$(program_transform_name)'`; \
404 $(CC) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(ALL_CFLAGS) $(srcdir)/nlmconv.c
405
406 $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_DEPS)
407 $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
408
409 # Targets to rebuild dependencies in this Makefile.
410 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
411 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
412 rm -f .dep1
413 $(MAKE) DEP=$(DEP) .dep1
414 sed -f dep.sed <.dep1 >.dep
415
416 # This rule really wants a mkdep that runs "gcc -MM".
417 .dep1: $(CFILES) $(GENERATED_CFILES)
418 rm -f .dep2
419 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
420 $(DEP) -f .dep2 $(ALL_CFLAGS) $?
421 $(srcdir)/../move-if-change .dep2 .dep1
422
423 dep.sed: dep-in.sed config.status
424 sed <$(srcdir)/dep-in.sed >dep.sed \
425 -e 's!@INCDIR@!$(INCDIR)!' \
426 -e 's!@BFDDIR@!$(BFDDIR)!' \
427 -e 's!@SRCDIR@!$(srcdir)!'
428
429 dep: .dep
430 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
431 cat .dep >> tmp-Makefile
432 $(srcdir)/../move-if-change tmp-Makefile Makefile
433
434 dep-in: .dep
435 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
436 cat .dep >> tmp-Makefile.in
437 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
438
439 .PHONY: dep dep-in
440
441 ###
442 # DOCUMENTATION TARGETS
443 config.texi: Makefile
444 rm -f config.texi
445 echo '@set VERSION $(VERSION)' > config.texi
446 # TeX output
447 binutils.dvi: $(srcdir)/binutils.texi config.texi
448 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
449
450 # info file for online browsing
451 binutils.info: $(srcdir)/binutils.texi config.texi
452 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
453
454 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
455 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
456 > $(DEMANGLER_PROG).1
457
458 # different targets for -ms, -mm, -me
459 # Try to use a recent texi2roff. v2 was put on prep in jan91.
460 # If you want an index, see texi2roff doc for postprocessing
461 # and add -i to texi2roff invocations below.
462 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
463 # corresponding -e lines when later texi2roff's are current)
464 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
465 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
466 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
467 # + @alphaenumerate is ridiculously new, turned into @enumerate
468
469 # roff output (-ms)
470 binutils.ms: $(srcdir)/binutils.texi
471 sed -e '/\\input texinfo/d' \
472 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
473 -e '/^@ifinfo/,/^@end ifinfo/d' \
474 -e '/^@c/d' \
475 -e 's/{.*,,/{/' \
476 -e 's/@ / /g' \
477 -e 's/^@alphaenumerate/@enumerate/g' \
478 -e 's/^@end alphaenumerate/@end enumerate/g' \
479 $(srcdir)/binutils.texi | \
480 $(TEXI2ROFF) -ms | \
481 sed -e 's/---/\\(em/g' \
482 >binutils.ms
483
484 # roff output (-mm)
485 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
486 # try leaving them in
487 binutils.mm: $(srcdir)/binutils.texi
488 sed -e '/\\input texinfo/d' \
489 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
490 -e '/^@ifinfo/,/^@end ifinfo/d' \
491 -e '/^@c/d' \
492 -e 's/{.*,,/{/' \
493 -e '/@noindent/d' \
494 -e 's/@ / /g' \
495 -e 's/^@alphaenumerate/@enumerate/g' \
496 -e 's/^@end alphaenumerate/@end enumerate/g' \
497 $(srcdir)/binutils.texi | \
498 $(TEXI2ROFF) -mm | \
499 sed -e 's/---/\\(em/g' \
500 >binutils.mm
501
502 # roff output (-me)
503 binutils.me: $(srcdir)/binutils.texi
504 sed -e '/\\input texinfo/d' \
505 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
506 -e '/^@ifinfo/,/^@end ifinfo/d' \
507 -e '/^@c/d' \
508 -e 's/{.*,,/{/' \
509 -e 's/@ / /g' \
510 -e 's/^@alphaenumerate/@enumerate/g' \
511 -e 's/^@end alphaenumerate/@end enumerate/g' \
512 $(srcdir)/binutils.texi | \
513 $(TEXI2ROFF) -me | \
514 sed -e 's/---/\\(em/g' \
515 >binutils.me
516
517
518 ###
519
520 mostlyclean:
521 -rm -f *.o *~ \#* core binutils.?? binutils.??? y.output
522 -rm -rf tmpdir
523 clean: mostlyclean
524 -rm -f $(PROGS) $(DEMANGLER_PROG).1 stamp-under
525 -rm -f underscore.c sysroff sysroff.c sysroff.h sysinfo dep.sed
526 distclean:
527 -rm -f Makefile config.status *.o *~ \#* core y.*
528 -rm -f binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
529 -rm -f $(PROGS) underscore.c config.h stamp-h config.cache config.log
530 -rm -f dep.sed stamp-under $(DEMANGLER_PROG).1
531 maintainer-clean realclean: clean distclean
532 @echo "This command is intended for maintainers to use;"
533 @echo "it deletes files that may require special tools to rebuild."
534 -rm -f $(DISTSTUFF) *.info* TAGS
535
536 etags tags: TAGS
537
538 TAGS: force
539 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
540
541 install: all
542 for i in $(PROGS) ; do \
543 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
544 done
545 for i in $(MANPAGES) ; do \
546 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
547 done
548 if [ x$(DEMANGLER_PROG) != x ]; then \
549 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1; \
550 fi
551 test -d $(tooldir) || mkdir $(tooldir)
552 test -d $(tooldir)/bin || mkdir $(tooldir)/bin
553 for i in $(TOOL_PROGS) ; do \
554 if [ -f $$i ]; then \
555 j=`echo $$i | sed -e 's/.new//'`; \
556 rm -f $(tooldir)/bin/$$j; \
557 k=`echo $$j | sed '$(program_transform_name)'`; \
558 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
559 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
560 else true; \
561 fi; \
562 done
563
564 # This little path search is required because in the FSF net releases,
565 # the info files are included in the source tree, and that may not be
566 # the same as the build directory.
567 install-info: binutils.info
568 if [ -r binutils.info ]; then \
569 dir=. ; \
570 else \
571 dir=$(srcdir) ; \
572 fi ; \
573 for i in `cd $$dir; echo binutils.info*` ; do \
574 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
575 done
576
577 clean-info:
578 -rm -rf *.info*
579
580 # Making a dist:
581 # cvs rtag binutils-x-yy ld+utils
582 # cvs co -r binutils-x-yy ld+utils
583 # cd {HERE}; make dist [-f Makefile.in]
584
585 dist: $(DIST_NAME).tar.z
586
587 diststuff: $(DISTSTUFF) info
588
589 $(DIST_NAME).tar.z:
590 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
591 make diststuff -f Makefile.in
592 cd ../ld; make diststuff -f Makefile.in
593 cd ../gprof; make diststuff -f Makefile.in
594 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
595 # Take out texinfo from configurable dirs
596 mv ../configure.in tmp; \
597 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
598 cd ..; chmod og=u `find . -print`
599 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
600 rm -rf ../../$(DIST_NAME)
601
602 #-----------------------------------------------------------------------------
603 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
604 #
605 # 'VERSION' file must be present and contain a string of the form "x.y"
606 #-----------------------------------------------------------------------------
607
608 ver960.c: FORCE
609 rm -f ver960.c
610 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
611
612
613 # Dummy target to force execution of dependent targets.
614 #
615 force:
616
617 # Target to uncomment host-specific lines in this makefile. Such lines must
618 # have the following string beginning in column 1: #__<hostname>__#
619 # Original Makefile is backed up as 'Makefile.old'.
620 #
621 # Invoke with: make make HOST=xxx
622 #
623 make:
624 -@if test $(HOST)x = x ; then \
625 echo '\aSpecify "make make HOST=???"'; \
626 exit 1; \
627 fi ; \
628 grep -s "^#The next line was generated by 'make make'" Makefile; \
629 if test $$? = 0 ; then \
630 echo "\aMakefile has already been processed with 'make make'";\
631 exit 1; \
632 fi ; \
633 mv -f Makefile Makefile.old; \
634 echo "#The next line was generated by 'make make'" >Makefile ; \
635 echo "HOST=$(HOST)" >>Makefile ; \
636 echo >>Makefile ; \
637 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
638
639 Makefile: Makefile.in config.status
640 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
641
642 config.h: stamp-h ; @true
643 stamp-h: config.in config.status
644 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
645
646 config.status: configure $(srcdir)/../bfd/configure.host $(srcdir)/../bfd/config.bfd
647 $(SHELL) ./config.status --recheck
648
649 # What appears below is generated by a hacked mkdep using gcc -MM.
650
651 # DO NOT DELETE THIS LINE -- mkdep uses it.
652 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
653
654 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
655 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
656 $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h arsup.h
657 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
658 arsup.h $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
659 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
660 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
661 coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
662 $(INCDIR)/fopen-same.h
663 coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/fopen-same.h \
664 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
665 coffgrok.h
666 debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
667 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
668 debug.h
669 dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
670 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
671 $(INCDIR)/getopt.h $(INCDIR)/demangle.h
672 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h
673 ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/ieee.h \
674 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
675 debug.h budbg.h
676 is-ranlib.o: is-ranlib.c
677 is-strip.o: is-strip.c
678 maybe-ranlib.o: maybe-ranlib.c
679 maybe-strip.o: maybe-strip.c
680 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
681 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
682 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
683 $(INCDIR)/nlm/external.h nlmconv.h
684 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/progress.h \
685 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
686 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h \
687 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
688 not-ranlib.o: not-ranlib.c
689 not-strip.o: not-strip.c
690 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
691 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
692 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h budbg.h
693 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
694 $(INCDIR)/getopt.h $(INCDIR)/progress.h bucomm.h config.h \
695 $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h $(INCDIR)/libiberty.h \
696 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h
697 prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
698 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
699 debug.h budbg.h
700 rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
701 $(INCDIR)/coff/internal.h bucomm.h config.h $(INCDIR)/fopen-same.h \
702 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
703 budbg.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
704 rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
705 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
706 debug.h budbg.h
707 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h \
708 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
709 srconv.o: srconv.c bucomm.h config.h $(INCDIR)/fopen-same.h \
710 sysroff.h coffgrok.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
711 $(INCDIR)/bfdlink.h sysroff.c
712 stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
713 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
714 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
715 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
716 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
717 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
718 sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
719 bucomm.h config.h $(INCDIR)/fopen-same.h sysroff.h \
720 sysroff.c
721 version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
722 bucomm.h config.h $(INCDIR)/fopen-same.h
723 wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
724 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
725 debug.h budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
726 $(INCDIR)/aout/stab.def
727 underscore.o: underscore.c
728 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
729 bucomm.h config.h $(INCDIR)/fopen-same.h arsup.h
730 arlex.o: arlex.c arparse.h
731 sysroff.o: sysroff.c
732 sysinfo.o: sysinfo.c
733 syslex.o: syslex.c sysinfo.h
734 defparse.o: defparse.c
735 deflex.o: deflex.c defparse.h
736 nlmheader.o: nlmheader.c ../bfd/bfd.h bucomm.h config.h \
737 $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
738 nlmconv.h
739
740 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.046226 seconds and 4 git commands to generate.