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