]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/Makefile.in
version 2.6
[thirdparty/binutils-gdb.git] / binutils / Makefile.in
1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1992, 1993, 1994 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 version=`./../gcc/gcc -dumpversion`
82
83 # Where to find texinfo.tex to format docn with TeX
84 TEXIDIR = $(srcdir)/../texinfo
85
86 #CC=gcc -Wall
87 CC=cc
88 # these two are almost the same program
89 AR_PROG=ar
90 RANLIB_PROG=ranlib
91
92 # objcopy and strip should be the same program
93 OBJCOPY_PROG=objcopy
94 STRIP_PROG=strip.new
95
96 STRINGS_PROG=strings
97
98 # These should all be the same program too.
99 SIZE_PROG=size
100 NM_PROG=nm.new
101 OBJDUMP_PROG=objdump
102
103 # This is the demangler, as a standalone program.
104 # Note: This one is used as the installed name too, unlike the above.
105 DEMANGLER_PROG=c++filt
106
107 NLMCONV_PROG=nlmconv
108 DLLTOOL_PROG=dlltool
109
110 SRCONV_PROG=srconv sysdump coffdump
111
112
113
114 MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
115
116 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@
117 STAGESTUFF = $(PROGS) *.o
118 # Files that can be generated, but should be in the distribution.
119 # Don't build $(DEMANGLER_PROG).1, since its name may vary with the
120 # configuration.
121 DISTSTUFF=arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h syslex.c
122
123 # Stuff that goes in tooldir/ if appropriate
124 TOOL_PROGS = nm.new strip.new ar ranlib $(DLLTOOL_PROG)
125
126 BASEDIR = $(srcdir)/..
127 BFDDIR = $(BASEDIR)/bfd
128 INCDIR = $(BASEDIR)/include
129 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
130
131 ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
132
133 .c.o:
134 $(CC) -c $(ALL_CFLAGS) $<
135
136 #\f
137 ## Random definitions
138 # Hopefully all these may be flushed once we get configuration down pat.
139
140 # alloca only needed for systems which don't have it and when cc != gcc.
141 # ALLOCA = alloca.o
142
143 # nm tries to malloc enough space for the string table. The old GNU malloc
144 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
145 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
146 # there is enough memory. So use the new GNU malloc.
147 # MALLOC = gmalloc.o
148 # Use this if the system malloc is good enough.
149 MALLOC =
150
151 # Use the GNU getopt unless you have problems with it.
152 # The IRIS version could probably benefit from being assembled with
153 # libmalloc rather than the ordinary malloc.
154 LIBIBERTY = ../libiberty/libiberty.a
155
156 # Code shared by all the binutils.
157 BULIBS = bucomm.o version.o filemode.o
158
159 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
160
161 BFD = ../bfd/libbfd.a
162 OPCODES = ../opcodes/libopcodes.a
163
164 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
165 echo $${rootme}/../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_canonical)" = "$(target_canonical)" ] ; 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_LIBS) $(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 rootme=`pwd`; export rootme ; \
230 srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
231 EXPECT=${EXPECT} ; export EXPECT ; \
232 if [ -f $$rootme/../expect/expect ] ; then \
233 TCL_LIBRARY=$${srcroot}/../tcl/library ; \
234 export TCL_LIBRARY ; else true; fi ; \
235 $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
236 $(RUNTESTFLAGS) CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)"
237
238 installcheck:
239 /bin/sh $(srcdir)/sanity.sh $(bindir)
240
241 info: binutils.info
242
243 dvi: binutils.dvi
244
245 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
246 $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
247
248 $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
249 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
250
251 $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
252 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
253
254 $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
255 $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
256
257 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
258 $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
259
260 $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES)
261 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
262
263 underscore.c: Makefile
264 rm -f underscore.c
265 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
266 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
267 mv -f underscore.t underscore.c
268
269 version.o: version.c Makefile
270 $(CC) -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) -c $(srcdir)/version.c
271
272 cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
273 $(CC) -c -DMAIN -DVERSION='"$(VERSION)"' $(ALL_CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
274
275 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o $(DEMANGLER_PROG).1
276 $(CC) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
277
278 arparse.c: arparse.y
279 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
280 mv -f y.tab.c arparse.c
281 mv -f y.tab.h arparse.h
282
283 # Separate from arparse.c so that a parallel make doesn't try to build
284 # both arparse.c and arparse.h simultaneously.
285 arparse.h: arparse.c
286
287 arlex.c: arlex.l
288 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
289 mv lex.yy.c arlex.c
290
291 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
292 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
293
294 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
295 $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
296
297 # This rule creates a single binary that switches between ar and ranlib
298 # by looking at argv[0]. Use this kludge to save some disk space.
299 # However, you have to install things by hand.
300 # (That is after 'make install', replace the installed ranlib by a link to ar.)
301
302 # Alternatively, you can install ranlib.sh as ranlib.
303
304 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
305 $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
306 -rm -f $(RANLIB_PROG)
307 -ln $(AR_PROG) $(RANLIB_PROG)
308
309 # objcopy and strip in one binary that uses argv[0] to decide its action.
310
311 objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
312 $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
313 -rm -f $(STRIP_PROG)
314 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
315
316 sysroff.c: sysinfo sysroff.info
317 ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
318 ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
319 ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
320
321 sysroff.h: sysinfo sysroff.info
322 ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h
323
324 # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
325 # simultaneously.
326 sysinfo.c: sysinfo.y arparse.c
327 $(BISON) -tvd $(srcdir)/sysinfo.y
328 rm -f sysinfo.c
329 mv -f y.tab.c sysinfo.c
330 mv -f y.tab.h sysinfo.h
331
332 # Separate from sysinfo.c so that a parallel make doesn't try to build
333 # both sysinfo.c and sysinfo.h simultaneously.
334 sysinfo.h: sysinfo.c
335
336 syslex.c : syslex.l
337 $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l
338 mv lex.yy.c syslex.c
339
340 sysinfo: sysinfo.o syslex.o
341 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
342
343 syslex.o: syslex.c sysinfo.h
344 if [ -r syslex.c ]; then \
345 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
346 else \
347 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
348 fi
349
350 sysinfo.o: sysinfo.c
351 if [ -r sysinfo.c ]; then \
352 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
353 else \
354 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
355 fi
356
357 srconv.o: srconv.c sysroff.h sysroff.c coffgrok.h $(INCDIR)/coff/internal.h \
358 ../bfd/libcoff.h config.h
359
360 srconv: srconv.o coffgrok.o $(ADDL_LIBS)
361 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
362
363 dlltool:dlltool.o defparse.o deflex.o cplus-dem.o
364 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS)
365
366 defparse.c:defparse.y
367 $(BISON) $(BISONFLAGS) $(srcdir)/defparse.y
368 mv -f y.tab.c defparse.c
369 mv -f y.tab.h defparse.h
370
371 defparse.h: defparse.c
372
373 deflex.c:deflex.l
374 $(LEX) $(LEX_OPTIONS) $(srcdir)/deflex.l
375 mv lex.yy.c deflex.c
376
377 dlltool.o:dlltool.c
378 $(CC) -c @DLLTOOL_DEFS@ $(ALL_CFLAGS) $(srcdir)/dlltool.c
379
380 coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
381 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
382
383 sysdump.o: sysdump.c sysroff.h sysroff.c bucomm.h config.h
384
385 sysdump: sysdump.o $(ADDL_LIBS)
386 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
387
388 # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
389 # simultaneously.
390 nlmheader.c: nlmheader.y sysinfo.c
391 $(BISON) $(srcdir)/nlmheader.y
392 rm -f nlmheader.c
393 mv -f y.tab.c nlmheader.c
394
395 nlmconv.o: nlmconv.c
396 ldname=`echo ld | sed '$(program_transform_name)'`; \
397 $(CC) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(ALL_CFLAGS) $(srcdir)/nlmconv.c
398
399 $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
400 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
401
402 # This list of dependencies was generated by doing a make with gcc -MM
403 # saving the output in a file and removing the gcc commands
404 # changing "../../devo/binutils/../bfd" to "$(BFDDIR)"
405 # removing "../../devo/binutils/"
406 # changing "../include" to "$(INCDIR)"
407
408 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
409 $(INCDIR)/obstack.h \
410 $(INCDIR)/fopen-same.h bucomm.h config.h
411 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
412 $(INCDIR)/obstack.h \
413 $(INCDIR)/fopen-same.h
414 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
415 $(INCDIR)/obstack.h \
416 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h config.h
417 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
418 $(INCDIR)/obstack.h \
419 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
420 $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \
421 $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def config.h
422 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
423 $(INCDIR)/obstack.h \
424 $(INCDIR)/fopen-same.h bucomm.h config.h $(INCDIR)/getopt.h \
425 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
426 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h
427 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
428 $(INCDIR)/obstack.h \
429 $(INCDIR)/fopen-same.h bucomm.h config.h $(INCDIR)/aout/ar.h \
430 $(BFDDIR)/libbfd.h arsup.h
431 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
432 $(INCDIR)/obstack.h arsup.h
433 arlex.o: arlex.c ./arparse.h
434 not-ranlib.o: not-ranlib.c
435 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
436 $(INCDIR)/obstack.h arsup.h bucomm.h config.h
437 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
438 $(INCDIR)/obstack.h bucomm.h config.h
439 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
440 $(INCDIR)/obstack.h \
441 $(INCDIR)/fopen-same.h bucomm.h config.h
442 is-strip.o: is-strip.c
443 is-ranlib.o: is-ranlib.c
444 not-strip.o: not-strip.c
445 nlmheader.o: nlmheader.c ../bfd/bfd.h \
446 $(INCDIR)/fopen-same.h bucomm.h config.h \
447 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
448 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h \
449 $(INCDIR)/fopen-same.h bucomm.h config.h \
450 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
451 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \
452 $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
453
454 stage1: force
455 - mkdir stage1
456 - mv -f $(STAGESTUFF) stage1
457
458 stage2: force
459 - mkdir stage2
460 - mv -f $(STAGESTUFF) stage2
461
462 stage3: force
463 - mkdir stage3
464 - mv -f $(STAGESTUFF) stage3
465
466 against=stage2
467
468 comparison: force
469 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
470
471 de-stage1: force
472 - (cd stage1 ; mv -f * ..)
473 - rmdir stage1
474
475 de-stage2: force
476 - (cd stage2 ; mv -f * ..)
477 - rmdir stage2
478
479 de-stage3: force
480 - (cd stage3 ; mv -f * ..)
481 - rmdir stage3
482
483 ###
484 # DOCUMENTATION TARGETS
485 config.texi: Makefile
486 rm -f config.texi
487 echo '@set VERSION $(VERSION)' > config.texi
488 # TeX output
489 binutils.dvi: $(srcdir)/binutils.texi config.texi
490 TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
491
492 # info file for online browsing
493 binutils.info: $(srcdir)/binutils.texi config.texi
494 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
495
496 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
497 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
498 > $(DEMANGLER_PROG).1
499
500 # different targets for -ms, -mm, -me
501 # Try to use a recent texi2roff. v2 was put on prep in jan91.
502 # If you want an index, see texi2roff doc for postprocessing
503 # and add -i to texi2roff invocations below.
504 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
505 # corresponding -e lines when later texi2roff's are current)
506 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
507 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
508 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
509 # + @alphaenumerate is ridiculously new, turned into @enumerate
510
511 # roff output (-ms)
512 binutils.ms: $(srcdir)/binutils.texi
513 sed -e '/\\input texinfo/d' \
514 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
515 -e '/^@ifinfo/,/^@end ifinfo/d' \
516 -e '/^@c/d' \
517 -e 's/{.*,,/{/' \
518 -e 's/@ / /g' \
519 -e 's/^@alphaenumerate/@enumerate/g' \
520 -e 's/^@end alphaenumerate/@end enumerate/g' \
521 $(srcdir)/binutils.texi | \
522 $(TEXI2ROFF) -ms | \
523 sed -e 's/---/\\(em/g' \
524 >binutils.ms
525
526 # roff output (-mm)
527 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
528 # try leaving them in
529 binutils.mm: $(srcdir)/binutils.texi
530 sed -e '/\\input texinfo/d' \
531 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
532 -e '/^@ifinfo/,/^@end ifinfo/d' \
533 -e '/^@c/d' \
534 -e 's/{.*,,/{/' \
535 -e '/@noindent/d' \
536 -e 's/@ / /g' \
537 -e 's/^@alphaenumerate/@enumerate/g' \
538 -e 's/^@end alphaenumerate/@end enumerate/g' \
539 $(srcdir)/binutils.texi | \
540 $(TEXI2ROFF) -mm | \
541 sed -e 's/---/\\(em/g' \
542 >binutils.mm
543
544 # roff output (-me)
545 binutils.me: $(srcdir)/binutils.texi
546 sed -e '/\\input texinfo/d' \
547 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
548 -e '/^@ifinfo/,/^@end ifinfo/d' \
549 -e '/^@c/d' \
550 -e 's/{.*,,/{/' \
551 -e 's/@ / /g' \
552 -e 's/^@alphaenumerate/@enumerate/g' \
553 -e 's/^@end alphaenumerate/@end enumerate/g' \
554 $(srcdir)/binutils.texi | \
555 $(TEXI2ROFF) -me | \
556 sed -e 's/---/\\(em/g' \
557 >binutils.me
558
559
560 ###
561
562 mostlyclean:
563 -rm -f *.o *~ \#* core binutils.?? binutils.??? y.output config.log
564 -rm -rf tmpdir
565 clean: mostlyclean
566 -rm -f $(PROGS) underscore.c sysroff sysroff.c sysroff.h sysinfo
567 distclean:
568 -rm -f Makefile config.status *.o *~ \#* core y.* \
569 binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
570 -rm -f $(PROGS) underscore.c config.h stamp-h config.cache config.log
571 maintainer-clean realclean: clean distclean
572 @echo "This command is intended for maintainers to use;"
573 @echo "it deletes files that may require special tools to rebuild."
574 -rm -f $(DISTSTUFF) *.info TAGS
575
576 etags tags: TAGS
577
578 TAGS: force
579 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
580
581 install: all
582 for i in $(PROGS) ; do \
583 $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
584 done
585 for i in $(MANPAGES) ; do \
586 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
587 done
588 if [ x$(DEMANGLER_PROG) != x ]; then \
589 $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1; \
590 fi
591 -if [ -d $(tooldir) ]; then \
592 if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
593 for i in $(TOOL_PROGS) ; do \
594 if [ -f $$i ]; then \
595 j=`echo $$i | sed -e 's/.new//'`; \
596 rm -f $(tooldir)/bin/$$j; \
597 k=`echo $$j | sed '$(program_transform_name)'`; \
598 ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
599 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
600 fi; \
601 done; \
602 else true; fi
603
604 # This little path search is required because in the FSF net releases,
605 # the info files are included in the source tree, and that may not be
606 # the same as the build directory.
607 install-info: binutils.info
608 if [ -r binutils.info ]; then \
609 dir=. ; \
610 else \
611 dir=$(srcdir) ; \
612 fi ; \
613 for i in `cd $$dir; echo binutils.info*` ; do \
614 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
615 done
616
617 clean-info:
618 -rm -rf *.info*
619
620 # Making a dist:
621 # cvs rtag binutils-x-yy ld+utils
622 # cvs co -r binutils-x-yy ld+utils
623 # Sanitize
624 # cd {HERE}; make dist [-f Makefile.in]
625
626 dist: $(DIST_NAME).tar.z
627
628 diststuff: $(DISTSTUFF) info
629
630 $(DIST_NAME).tar.z:
631 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
632 make diststuff -f Makefile.in
633 cd ../ld; make diststuff -f Makefile.in
634 cd ../gprof; make diststuff -f Makefile.in
635 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
636 # Take out texinfo from configurable dirs
637 mv ../configure.in tmp; \
638 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
639 cd ..; chmod og=u `find . -print`
640 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
641 rm -rf ../../$(DIST_NAME)
642
643 #-----------------------------------------------------------------------------
644 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
645 #
646 # 'VERSION' file must be present and contain a string of the form "x.y"
647 #-----------------------------------------------------------------------------
648
649 ver960.c: FORCE
650 rm -f ver960.c
651 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
652
653
654 # Dummy target to force execution of dependent targets.
655 #
656 force:
657
658 # Target to uncomment host-specific lines in this makefile. Such lines must
659 # have the following string beginning in column 1: #__<hostname>__#
660 # Original Makefile is backed up as 'Makefile.old'.
661 #
662 # Invoke with: make make HOST=xxx
663 #
664 make:
665 -@if test $(HOST)x = x ; then \
666 echo '\aSpecify "make make HOST=???"'; \
667 exit 1; \
668 fi ; \
669 grep -s "^#The next line was generated by 'make make'" Makefile; \
670 if test $$? = 0 ; then \
671 echo "\aMakefile has already been processed with 'make make'";\
672 exit 1; \
673 fi ; \
674 mv -f Makefile Makefile.old; \
675 echo "#The next line was generated by 'make make'" >Makefile ; \
676 echo "HOST=$(HOST)" >>Makefile ; \
677 echo >>Makefile ; \
678 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
679
680 Makefile: Makefile.in config.status
681 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
682
683 config.h: stamp-h ; @true
684 stamp-h: config.in config.status
685 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
686
687 config.status: configure
688 $(SHELL) ./config.status --recheck
689
690 ### Local Variables: ***
691 ### mode:fundamental ***
692 ### page-delimiter: "^#\f" ***
693 ### End: ***
694 ### end of file