* Makefile.in (itbl-lex.o): Remove -Wall.
[external/binutils.git] / gas / Makefile.in
1 # Makefile for GNU Assembler
2 #   Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 1997
3 #   Free Software Foundation, Inc.
4
5 # This file is part of GNU GAS.
6
7 # GNU GAS is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11
12 # GNU GAS is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU GAS; see the file COPYING.  If not, write to the Free
19 # Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 # 02111-1307, USA.
21
22 # The targets for external use include:
23 # all, doc, proto, install, uninstall, includes, TAGS,
24 # clean, mostlyclean, distclean, realclean, stage1, stage2, stage3, stage4.
25
26 # Variables that exist for you to override.
27 # See below for how to change them for certain systems.
28
29 VPATH = @srcdir@
30 srcdir = @srcdir@
31 srcroot = $(srcdir)/..
32
33 target_alias = @target_alias@
34 prefix = @prefix@
35
36 program_transform_name = @program_transform_name@
37 exec_prefix = @exec_prefix@
38 bindir = @bindir@
39 libdir = @libdir@
40 tooldir = $(exec_prefix)/$(target_alias)
41
42 datadir = @datadir@
43 mandir = @mandir@
44 man1dir = $(mandir)/man1
45 man2dir = $(mandir)/man2
46 man3dir = $(mandir)/man3
47 man4dir = $(mandir)/man4
48 man5dir = $(mandir)/man5
49 man6dir = $(mandir)/man6
50 man7dir = $(mandir)/man7
51 man8dir = $(mandir)/man8
52 man9dir = $(mandir)/man9
53 infodir = @infodir@
54 includedir = @includedir@
55
56 VERSION=cygnus-2.7.1
57
58 SHELL = /bin/sh
59
60 INSTALL = $${srcroot}/install.sh -c
61 INSTALL_PROGRAM = @INSTALL_PROGRAM@
62 INSTALL_DATA = @INSTALL_DATA@
63 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
64 INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
65
66 DISTSTUFF= make-gas.com m68k-parse.c itbl-parse.c itbl-lex.c
67
68 AR = ar
69 AR_FLAGS = qv
70 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
71 BISONFLAGS =
72 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ;  else echo flex ; fi`
73 LEXFLAGS =
74 MAKEINFO = makeinfo
75 TEXI2DVI = texi2dvi
76 RANLIB = ranlib
77 CC = @CC@
78 HLDFLAGS = @HLDFLAGS@
79 HLDENV = @HLDENV@
80 RPATH_ENVVAR = @RPATH_ENVVAR@
81 CFLAGS = -g
82 LDFLAGS =
83
84 MAKEOVERRIDES=
85
86 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
87           echo $${rootme}/../expect/expect ; \
88           else echo expect ; fi`
89
90 FLAGS_TO_PASS = \
91         "prefix=$(prefix)" \
92         "exec_prefix=$(exec_prefix)" \
93         "tooldir=$(tooldir)" \
94         "AR=$(AR)" \
95         "AR_FLAGS=$(AR_FLAGS)" \
96         "CC=$(CC)" \
97         "CFLAGS=$(CFLAGS)" \
98         "RANLIB=$(RANLIB)" \
99         "LOADLIBES=$(LOADLIBES)" \
100         "LDFLAGS=$(LDFLAGS)" \
101         "BISON=$(BISON)" \
102         "LEX=$(LEX)" \
103         "MAKEINFO=$(MAKEINFO)" \
104         "INSTALL=$(INSTALL)" \
105         "INSTALL_DATA=$(INSTALL_DATA)" \
106         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
107
108 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
109                 echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
110            fi`
111 RUNTESTFLAGS=
112
113 # use @target_cpu_type@ for refering to configured target name
114 IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h 
115 IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
116 IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
117 IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
118
119 # Lists of files for various purposes.
120
121 REAL_SOURCES = \
122         $(srcdir)/app.c \
123         $(srcdir)/as.c \
124         $(srcdir)/atof-generic.c \
125         $(srcdir)/bignum-copy.c \
126         $(srcdir)/cond.c \
127         $(srcdir)/expr.c \
128         $(srcdir)/flonum-konst.c \
129         $(srcdir)/flonum-copy.c \
130         $(srcdir)/flonum-mult.c \
131         $(srcdir)/frags.c \
132         $(srcdir)/hash.c \
133         $(srcdir)/input-file.c \
134         $(srcdir)/input-scrub.c \
135         $(srcdir)/itbl-ops.c \
136         $(srcdir)/literal.c \
137         $(srcdir)/messages.c \
138         $(srcdir)/output-file.c \
139         $(srcdir)/read.c \
140         $(srcdir)/subsegs.c \
141         $(srcdir)/symbols.c \
142         $(srcdir)/write.c \
143         $(srcdir)/listing.c \
144         $(srcdir)/ecoff.c \
145         $(srcdir)/stabs.c
146
147 # in an expedient order
148 LINKED_SOURCES = \
149         targ-cpu.c \
150         obj-format.c \
151         atof-targ.c
152
153 SOURCES = $(LINKED_SOURCES) $(REAL_SOURCES)
154
155 REAL_HEADERS = \
156         $(srcdir)/as.h \
157         $(srcdir)/bignum.h \
158         $(srcdir)/expr.h \
159         $(srcdir)/flonum.h \
160         $(srcdir)/frags.h \
161         $(srcdir)/hash.h \
162         $(srcdir)/input-file.h \
163         $(srcdir)/itbl-ops.h \
164         $(srcdir)/listing.h \
165         $(srcdir)/tc.h \
166         $(srcdir)/obj.h \
167         $(srcdir)/read.h \
168         $(srcdir)/struc-symbol.h \
169         $(srcdir)/subsegs.h \
170         $(srcdir)/symbols.h \
171         $(srcdir)/write.h \
172         $(srcdir)/ecoff.h
173
174 LINKED_HEADERS = \
175         targ-env.h \
176         targ-cpu.h \
177         obj-format.h \
178         atof-targ.h 
179
180 HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS)
181
182 TE_OBJS=
183
184 # @target_frag@
185
186 OBJS = \
187         targ-cpu.o \
188         obj-format.o \
189         atof-targ.o \
190         app.o \
191         as.o \
192         atof-generic.o \
193         bignum-copy.o \
194         cond.o \
195         expr.o \
196         flonum-konst.o \
197         flonum-copy.o \
198         flonum-mult.o \
199         frags.o \
200         hash.o \
201         input-file.o \
202         input-scrub.o \
203         literal.o \
204         messages.o \
205         output-file.o \
206         read.o \
207         subsegs.o \
208         symbols.o \
209         write.o \
210         listing.o \
211         ecoff.o \
212         stabs.o \
213         sb.o \
214         macro.o \
215         @extra_objects@ \
216         $(TE_OBJS)
217
218 GASPOBJS = \
219         gasp.o \
220         macro.o \
221         sb.o \
222         hash.o
223
224 all: .gdbinit as.new gasp.new
225         @srcroot=`cd $(srcroot); pwd`; export srcroot; \
226         (cd doc ; $(MAKE) $(FLAGS_TO_PASS) all)
227
228 dvi info install-info clean-info:
229         @srcroot=`cd $(srcroot); pwd`; export srcroot; \
230         (cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@)
231
232 make-gas.com: stamp-mk.com
233 stamp-mk.com: vmsconf.sh Makefile
234         sh $(srcdir)/vmsconf.sh $(OBJS) > new-make.com
235         $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
236         touch stamp-mk.com
237
238 # Now figure out from those variables how to compile and link.
239
240 # This is the variable actually used when we compile.
241 ALL_CFLAGS = -D_GNU_SOURCE $(INTERNAL_CFLAGS) $(CROSS) $(CFLAGS) $(HDEFINES) $(TDEFINES)
242
243 # How to link with both our special library facilities
244 # and the system's installed libraries.
245
246 LIBDEPS = @OPCODES_DEP@ @BFDDEP@ $(LOCAL_LOADLIBES) ../libiberty/libiberty.a
247 LIBS = @OPCODES_LIB@ @BFDLIB@ $(LOCAL_LOADLIBES) ../libiberty/libiberty.a
248
249 # Specify the directories to be searched for header files.
250 # Both . and srcdir are used, in that order,
251 # so that tm.h and config.h will be found in the compilation
252 # subdirectory rather than in the source directory.
253 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(srcdir)/../include -I$(srcdir)/.. -I$(srcdir)/../bfd
254
255 # Always use -I$(srcdir)/config when compiling.
256 .c.o:
257         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $<
258
259 # This tells GNU make version 3 not to export all the variables
260 # defined in this file into the environment.
261 .NOEXPORT:
262
263 # Files to be copied away after each stage in building.
264 STAGESTUFF = *.o as.new gasp.new
265
266 $(OBJS): @ALL_OBJ_DEPS@
267
268 as.new: $(OBJS) $(LIBDEPS)
269         $(HLDENV) $(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
270
271 $(OBJS): config.h as.h targ-env.h obj-format.h targ-cpu.h flonum.h expr.h \
272         struc-symbol.h write.h frags.h hash.h read.h symbols.h tc.h obj.h \
273         listing.h bignum.h $(IT_HDRS) $(srcdir)/../include/libiberty.h
274
275 gasp.new: $(GASPOBJS) ../libiberty/libiberty.a
276         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o gasp.new $(GASPOBJS) ../libiberty/libiberty.a $(LOADLIBES)
277
278 installcheck:
279         @echo No installcheck target is available yet for the GNU assembler.
280
281 site.exp: ./Makefile
282         @echo "Making a new config file..."
283         -@rm -f ./tmp?
284         @touch site.exp
285         -@mv site.exp site.bak
286         @echo "## these variables are automatically generated by make ##" > ./tmp0
287         @echo "# Do not edit here. If you wish to override these values," >> ./tmp0
288         @echo "# do so in the last section."                    >> ./tmp0
289         @echo set host_os @host_os@                             >> ./tmp0
290         @echo set host_alias @host_alias@                       >> ./tmp0
291         @echo set host_cpu @host_cpu@                           >> ./tmp0
292         @echo set host_vendor @host_vendor@                     >> ./tmp0
293         @echo set target_os @target_os@                         >> ./tmp0
294         @echo set target_alias @target_alias@                   >> ./tmp0
295         @echo set target_cpu @target_cpu@                       >> ./tmp0
296         @echo set target_vendor @target_vendor@                 >> ./tmp0
297         @echo set host_triplet @host@                           >> ./tmp0
298         @echo set target_triplet @target@                       >> ./tmp0
299         @echo set target_canonical @target@                     >> ./tmp0
300         @echo set srcdir ${srcdir}/testsuite                    >> ./tmp0
301         @echo set exec_prefix ${exec_prefix}                    >> ./tmp0
302         @echo set objdir `pwd`                                  >> ./tmp0
303         @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
304         @sed -e '1,/^## All variables above are.*##/ d' < site.bak >> ./tmp0
305         @mv -f ./tmp0 site.exp
306
307 check:  site.exp
308         if [ -d testsuite ]; then \
309           true; \
310         else \
311           mkdir testsuite; \
312         fi
313         rm -f testsuite/site.exp
314         cp site.exp testsuite/site.exp
315         rootme=`pwd`; export rootme; \
316         srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
317         $(RPATH_ENVVAR)=$$rootme/../bfd:$$rootme/../opcodes:$$$(RPATH_ENVVAR); \
318         export $(RPATH_ENVVAR); \
319         cd testsuite; \
320         EXPECT=${EXPECT} ; export EXPECT ; \
321         if [ -f $${rootme}/../expect/expect ] ; then  \
322            TCL_LIBRARY=$${srcdir}/../tcl/library ; \
323            export TCL_LIBRARY ; fi ; \
324         $(RUNTEST) --tool gas --srcdir $${srcdir}/testsuite $(RUNTESTFLAGS)
325
326 config.status: configure
327         $(SHELL) config.status --recheck
328
329 config.h: config-stamp ; @true
330 config-stamp: Makefile conf
331         -rm -f config.new config-stamp
332         echo '/* config.h.  Generated automatically by make.  */' > config.new
333         echo '#ifndef GAS_VERSION'                      >> config.new
334         echo '#define GAS_VERSION "$(VERSION)"'         >> config.new
335         echo ''                                         >> config.new
336         cat conf                                        >> config.new
337         echo '#endif /* GAS_VERSION */'                 >> config.new
338         $(srcdir)/../move-if-change config.new config.h
339         touch config-stamp
340
341 # Compiling object files from source files.
342
343 TARG_CPU_DEP_a29k    =
344 TARG_CPU_DEP_alpha   = $(srcdir)/../include/opcode/alpha.h subsegs.h
345 # start-sanitize-arc
346 TARG_CPU_DEP_arc     = $(srcdir)/../include/opcode/arc.h subsegs.h
347 # end-sanitize-arc
348 TARG_CPU_DEP_arm     = subsegs.h
349 TARG_CPU_DEP_generic =
350 TARG_CPU_DEP_h8300   = $(srcdir)/../include/opcode/h8300.h
351 TARG_CPU_DEP_h8500   = $(srcdir)/../opcodes/h8500-opc.h subsegs.h
352 TARG_CPU_DEP_hppa    = subsegs.h
353 TARG_CPU_DEP_i386    = $(srcdir)/../include/opcode/i386.h subsegs.h
354 TARG_CPU_DEP_i860    =
355 TARG_CPU_DEP_i960    =
356 TARG_CPU_DEP_m68k    = $(srcdir)/../include/opcode/m68k.h \
357                         $(srcdir)/config/m68k-parse.h subsegs.h
358 TARG_CPU_DEP_m88k    = $(srcdir)/config/m88k-opcode.h subsegs.h
359 TARG_CPU_DEP_mips    = $(srcdir)/../include/opcode/mips.h subsegs.h  \
360                         $(srcdir)/config/itbl-mips.h 
361 TARG_CPU_DEP_ns32k   =
362 TARG_CPU_DEP_ppc     = subsegs.h
363 TARG_CPU_DEP_sh      = $(srcdir)/../opcodes/sh-opc.h subsegs.h
364 TARG_CPU_DEP_sparc   = subsegs.h
365 TARG_CPU_DEP_tahoe   =
366 TARG_CPU_DEP_vax     =
367 TARG_CPU_DEP_w65     = $(srcdir)/../opcodes/w65-opc.h subsegs.h
368 TARG_CPU_DEP_z8k     = $(srcdir)/../opcodes/z8k-opc.h
369
370 gasp.o : gasp.c sb.h macro.h config.h
371 sb.o : sb.c sb.h config.h
372 macro.o : macro.c macro.h sb.h hash.h config.h
373 app.o : app.c write.h
374 as.o : as.c output-file.h write.h subsegs.h sb.h macro.h
375 atof-generic.o : atof-generic.c
376 bignum-copy.o : bignum-copy.c
377 cond.o : cond.c
378 debug.o : debug.c subsegs.h
379 expr.o : expr.c
380 flonum-konst.o : flonum-konst.c
381 flonum-copy.o : flonum-copy.c
382 flonum-mult.o : flonum-mult.c
383 frags.o : frags.c subsegs.h
384 hash.o : hash.c
385 input-file.o : input-file.c input-file.h
386 input-scrub.o : input-scrub.c input-file.h sb.h
387 listing.o : listing.c input-file.h subsegs.h
388 literal.o : literal.c subsegs.h
389 messages.o : messages.c
390 output-file.o : output-file.c output-file.h
391 read.o : read.c sb.h macro.h
392 subsegs.o : subsegs.c subsegs.h
393 symbols.o : symbols.c subsegs.h
394 write.o : write.c subsegs.h output-file.h
395 ecoff.o : ecoff.c ecoff.h \
396         $(srcdir)/../include/coff/internal.h $(srcdir)/../include/coff/sym.h \
397         $(srcdir)/../include/coff/ecoff.h \
398         $(srcdir)/../include/coff/symconst.h \
399         $(srcdir)/../include/aout/stab_gnu.h
400 stabs.o : stabs.c subsegs.h $(srcdir)/../include/aout/stab_gnu.h
401 atof-targ.o : atof-targ.c
402 obj-format.o : obj-format.c
403 targ-cpu.o : targ-cpu.c $(TARG_CPU_DEP_@target_cpu_type@) $(IT_HDRS)
404
405 obj-elf.o : $(srcdir)/config/obj-elf.c
406         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-elf.c
407 obj-ecoff.o : $(srcdir)/config/obj-ecoff.c
408         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-ecoff.c
409
410 e-mipself.o : $(srcdir)/config/e-mipself.c
411         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-mipself.c
412 e-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
413         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-mipsecoff.c
414
415 # The m68k operand parser.
416
417 m68k-parse.c: $(srcdir)/config/m68k-parse.y
418         $(BISON) $(BISONFLAGS) $(srcdir)/config/m68k-parse.y
419         mv -f y.tab.c m68k-parse.c
420 m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
421
422
423 # The instruction table specification lexical analyzer and parser.
424
425 itbl-cpu.h : $(srcdir)/config/itbl-@target_cpu_type@.h
426 itbl-parse.h : $(srcdir)/itbl-parse.y
427 itbl-parse.c : $(srcdir)/itbl-parse.y
428 itbl-lex.c : $(srcdir)/itbl-lex.l
429
430 itbl-lex.c: $(srcdir)/itbl-lex.l
431         $(LEX) $(LEXFLAGS) $(srcdir)/itbl-lex.l
432         mv -f lex.yy.c itbl-lex.c
433
434 itbl-lex.o: itbl-lex.c 
435         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-lex.c
436
437 itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
438         $(YACC) -d $(YACCFLAGS) $(srcdir)/itbl-parse.y
439         mv -f y.tab.c itbl-parse.c
440         mv -f y.tab.h itbl-parse.h
441
442 itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
443         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-parse.c
444
445 itbl-ops.o: $(srcdir)/itbl-ops.c \
446         $(srcdir)/itbl-ops.h itbl-parse.h
447         $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/itbl-ops.c
448
449 # stand-alone itbl assembler & disassembler
450 itbl-test-ops.o: $(srcdir)/itbl-ops.c \
451         $(srcdir)/itbl-ops.h itbl-parse.h
452         $(CC) -o itbl-test-ops.o -DSTAND_ALONE -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/itbl-ops.c
453
454 itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
455         $(CC) -c -DSTAND_ALONE $(ALL_CFLAGS) $(INCLUDES)\
456         $(srcdir)/testsuite/gas/all/itbl-test.c
457
458 IT_TEST_OBJS= itbl-parse.o itbl-lex.o itbl-test-ops.o
459 itbl-test: $(IT_TEST_OBJS) itbl-test.o $(LIBDEPS)
460         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o itbl-test itbl-test.o $(IT_TEST_OBJS) $(LIBS)
461
462 # target itbl definitions for configuring coprocessor itbl support.
463 # configure should have taken care of this for us...
464 itbl-cpu.h: $(srcdir)/config/itbl-@target_cpu_type@.h
465         ln -s $(srcdir)/config/itbl-@target_cpu_type@.h itbl-cpu.h
466
467
468 # Remake the info files.
469
470 doc: $(srcdir)/as.info
471
472 $(srcdir)/as.info: $(srcdir)/doc/as.texinfo
473         @(cd doc; $(MAKE) $(FLAGS_TO_PASS) as.info; mv as.info $srcdir) 
474
475 diststuff: $(DISTSTUFF) info
476
477 clean-here:
478         -rm -f $(STAGESTUFF) core stamp-mk.com
479         -rm -f testsuite/*.o testsuite/*.out \
480                 testsuite/gas.log testsuite/gas.sum testsuite/site.exp
481
482 clean mostlyclean: clean-here
483         @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@
484
485 # Like clean but also delete the links made to configure gas.
486
487 DISTCLEAN_HERE = config.status Makefile targ-env.h targ-cpu.h \
488         targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \
489         atof-targ.h itbl-cpu.h \
490         config-stamp config.h conf config.log config.cache .gdbinit \
491         testsuite/Makefile testsuite/config.status
492
493 distclean: clean-here
494         @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@
495         -rm -f $(DISTCLEAN_HERE)
496
497 maintainer-clean realclean: clean-here
498         @echo "This command is intended for maintainers to use;"
499         @echo "it deletes files that may require special tools to rebuild."
500         @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@
501         -rm -rf $(DISTCLEAN_HERE) $(DISTSTUFF)
502
503 # Entry points `install', `includes' and `uninstall'.
504
505 # Copy the files into directories where they will be run.
506 install:
507         srcroot=`cd $(srcroot); pwd`; export srcroot; \
508         $(INSTALL_XFORM) as.new $(bindir)/as; \
509         $(INSTALL_XFORM1) $(srcdir)/doc/as.1 $(man1dir)/as.1; \
510         test -d $(tooldir) || mkdir $(tooldir); \
511         test -d $(tooldir)/bin || mkdir $(tooldir)/bin; \
512         n=`echo as | sed '$(program_transform_name)'`; \
513         rm -f $(tooldir)/bin/as; \
514         ln $(bindir)/$$n $(tooldir)/bin/as >/dev/null 2>/dev/null \
515          || $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as
516         srcroot=`cd $(srcroot); pwd`; export srcroot; \
517         $(INSTALL_XFORM) gasp.new $(bindir)/gasp
518
519 # Cancel installation by deleting the installed files.
520 uninstall:
521         -n=`t='$(program_transform_name)'; echo as | sed $$t`; \
522         rm -f $(bindir)/$$n; \
523         rm -f $(mandir)/$$n.1
524         -n=`t='$(program_transform_name)'; echo gasp | sed $$t`; \
525         rm -f $(bindir)/$$n; \
526
527 # These exist for maintenance purposes.
528
529 tags TAGS: force
530         etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in
531
532 bootstrap: as.new force
533         $(MAKE) stage1
534         rm -f stage && ln -s stage1 stage
535         $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
536         $(MAKE) stage2
537         rm -f stage && ln -s stage2 stage
538         $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
539         $(MAKE) comparison against=stage2
540
541 bootstrap2: force
542         rm -f stage && ln -s stage1 stage
543         $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
544         $(MAKE) stage2
545         rm -f stage && ln -s stage2 stage
546         $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
547         $(MAKE) comparison against=stage2
548
549 bootstrap3: force
550         rm -f stage && ln -s stage2 stage
551         $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
552         $(MAKE) comparison against=stage2
553
554 # Copy the object files from a particular stage into a subdirectory.
555 stage1: force
556         -mkdir stage1
557         -mv $(STAGESTUFF) stage1
558         if [ -f stage1/as.new -a ! -f stage1/as ] ; then (cd stage1 ; ln -s as.new as) ; fi
559
560 stage2: force
561         -mkdir stage2
562         -mv $(STAGESTUFF) stage2
563         if [ -f stage2/as.new -a ! -f stage2/as ] ; then (cd stage2 ; ln -s as.new as) ; fi
564
565 stage3: force
566         -mkdir stage3
567         -mv $(STAGESTUFF) stage3
568         if [ -f stage3/as.new -a ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi
569
570 against=stage2
571
572 # This rule is derived from corresponding code in the Makefile.in for gcc.
573 # The "tail +16c" is to bypass headers which may include timestamps or
574 # temporary assembly file names.
575 comparison: force
576         x=0 ; \
577         for file in *.o ; do \
578           tail +16c ./$$file > tmp-foo1; \
579           if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
580             if cmp tmp-foo1 tmp-foo2 ; then \
581               true ; \
582             else \
583               echo $$file differs ; \
584               x=1 ; \
585             fi ; \
586           else true; fi ; \
587         done ; \
588         exit $$x
589         -rm -f tmp-foo*
590
591 de-stage1: force
592         - (cd stage1 ; rm -f as ; mv -f * ..)
593         - rmdir stage1
594
595 de-stage2: force
596         - (cd stage2 ; rm -f as ; mv -f * ..)
597         - rmdir stage2
598
599 de-stage3: force
600         - (cd stage3 ; rm -f as ; mv -f * ..)
601         - rmdir stage3
602
603 #In GNU Make, ignore whether `stage*' exists.
604 .PHONY: stage1 stage2 stage3 stage4 clean mostlyclean realclean distclean
605 .PHONY: TAGS bootstrap
606
607 force:
608
609 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) \
610                 $(srcdir)/configure.in config.status conf.in
611         $(SHELL) ./config.status
612 .gdbinit: $(srcdir)/gdbinit.in config.status
613         $(SHELL) ./config.status