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