Creating Makefile stubs in preparation for mips three-stage.
[deliverable/binutils-gdb.git] / gas / Makefile.in
1 # Makefile for GNU Assembler
2 # Copyright (C) 1987, 1988, 1990, 1991 Free Software Foundation, Inc.
3
4 #This file is part of GNU GAS.
5
6 #GNU GAS 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 1, or (at your option)
9 #any later version.
10
11 #GNU GAS 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 GNU GAS; see the file COPYING. If not, write to
18 #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 # $Id$
21
22 # The targets for external use include:
23 # all, doc, proto, install, uninstall, includes, TAGS,
24 # clean, cleanconfig, 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 ALLOCA =
30 CFLAGS = -g $(XCFLAGS) -I$(srcdir)/../include
31 INTERNAL_CFLAGS = $(CROSS)
32 OLDCC = cc
33 BISON = bison
34 BISONFLAGS = -v
35 AR = ar
36 OLDAR_FLAGS = qc
37 AR_FLAGS = rc
38 SHELL = /bin/sh
39 # on sysV, define this as cp.
40 INSTALL = install -c
41 # These permit overriding just for certain files.
42 INSTALL_PROGRAM = $(INSTALL)
43 INSTALL_FILE = $(INSTALL)
44
45 # Define this as & to perform parallel make on a Sequent.
46 # Note that this has some bugs, and it seems currently necessary
47 # to compile all the gen* files first by hand to avoid erroneous results.
48 P =
49
50 # How to invoke ranlib.
51 RANLIB = ranlib
52 # Test to use to see whether ranlib exists on the system.
53 RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
54
55 # CFLAGS for use with OLDCC, for compiling gnulib.
56 # NOTE: -O does not work on some Unix systems!
57 CCLIBFLAGS = -O
58
59 # Version of ar to use when compiling gnulib.
60 OLDAR = ar
61
62 version=`awk '{print substr ($$4, 2, length ($$4) - 3); }' $(unsubdir)/../gcc/version.c`
63
64 # Directory where sources are, from where we are.
65 srcdir = .
66 # Common prefix for installation directories.
67 # NOTE: This directory must exist when you start installation.
68 destdir = /usr/local
69 prefix = $(destdir)
70 # Directory in which to put the executable for the command `gcc'
71 bindir = $(prefix)/bin
72 # Directory in which to put the directories used by the compiler.
73 libdir = $(prefix)/lib
74 # Directory in which the compiler finds executables, libraries, etc.
75 libsubdir = $(libdir)/gcc/$(target)/$(version)
76 # Number to put in man-page filename.
77 manext = 1
78 # Directory in which to put man pages.
79 mandir = $(prefix)/man/man$(manext)
80
81 # Additional system libraries to link with.
82 CLIB=
83
84 # Specify the rule for actually making gnulib.
85 GNULIB = gnulib.portable
86
87 # Specify the rule for actually making gnulib2.
88 GNULIB2 = gnulib2.portable
89
90 # List of extra C and assembler files to add to gnulib.
91 # Assembler files should have names ending in `.asm'.
92 LIBFUNCS_EXTRA =
93
94 # Program to convert libraries.
95 LIBCONVERT =
96
97 # Control whether header files are installed.
98 INSTALL_HEADERS=install-headers
99
100 # Change this to empty to prevent installing limits.h
101 LIMITS_H = limits.h
102
103 # Directory to link to, when using the target `maketest'.
104 DIR = ../gcc
105
106 # For better debugging under COFF, define SEPARATE_AUX_OUTPUT in config.h
107 # and define the following variable as `aux-output2.c' in make-...
108 AUX_OUTPUT2 =
109
110 # Flags to use when cross-building GCC.
111 # Prefix to apply to names of object files when using them
112 # to run on the machine we are compiling on.
113 HOST_PREFIX=
114 # Prefix to apply to names of object files when compiling them
115 # to run on the machine we are compiling on.
116 # The default for this variable is chosen to keep these rules
117 # out of the way of the other rules for compiling the same source files.
118 HOST_PREFIX_1=loser-
119 HOST_CC=$(CC)
120 HOST_CFLAGS=$(ALL_CFLAGS)
121 HOST_LDFLAGS=$(LDFLAGS)
122 HOST_CPPFLAGS=$(CPPFLAGS)
123
124 # Choose the real default target.
125 ALL=as.new
126
127 # End of variables for you to override.
128
129 # Lists of files for various purposes.
130
131 REAL_SOURCES = \
132 $(srcdir)/app.c \
133 $(srcdir)/as.c \
134 $(srcdir)/atof-generic.c \
135 $(srcdir)/bignum-copy.c \
136 $(srcdir)/cond.c \
137 $(srcdir)/expr.c \
138 $(srcdir)/flonum-const.c \
139 $(srcdir)/flonum-copy.c \
140 $(srcdir)/flonum-mult.c \
141 $(srcdir)/frags.c \
142 $(srcdir)/hash.c \
143 $(srcdir)/hex-value.c \
144 $(srcdir)/input-file.c \
145 $(srcdir)/input-scrub.c \
146 $(srcdir)/messages.c \
147 $(srcdir)/output-file.c \
148 $(srcdir)/read.c \
149 $(srcdir)/strstr.c \
150 $(srcdir)/subsegs.c \
151 $(srcdir)/symbols.c \
152 $(srcdir)/version.c \
153 $(srcdir)/write.c \
154 $(srcdir)/xmalloc.c \
155 $(srcdir)/xrealloc.c
156
157 # in an expedient order
158 LINKED_SOURCES = \
159 targ-cpu.c \
160 obj-format.c \
161 atof-targ.c
162
163 SOURCES = $(LINKED_SOURCES) $(REAL_SOURCES)
164
165 REAL_HEADERS = \
166 $(srcdir)/as.h \
167 $(srcdir)/bignum.h \
168 $(srcdir)/expr.h \
169 $(srcdir)/flonum.h \
170 $(srcdir)/frags.h \
171 $(srcdir)/hash.h \
172 $(srcdir)/input-file.h \
173 $(srcdir)/tc.h \
174 $(srcdir)/obj.h \
175 $(srcdir)/read.h \
176 $(srcdir)/struc-symbol.h \
177 $(srcdir)/subsegs.h \
178 $(srcdir)/symbols.h \
179 $(srcdir)/syscalls.h \
180 $(srcdir)/write.h
181
182 LINKED_HEADERS = \
183 a.out.gnu.h \
184 a.out.h \
185 host.h \
186 targ-env.h \
187 targ-cpu.h \
188 obj-format.h \
189 atof-targ.h
190
191 HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS)
192
193 OBJS = \
194 targ-cpu.o \
195 obj-format.o \
196 atof-targ.o \
197 app.o \
198 as.o \
199 atof-generic.o \
200 bignum-copy.o \
201 cond.o \
202 expr.o \
203 flonum-const.o \
204 flonum-copy.o \
205 flonum-mult.o \
206 frags.o \
207 hash.o \
208 hex-value.o \
209 input-file.o \
210 input-scrub.o \
211 messages.o \
212 output-file.o \
213 read.o \
214 strstr.o \
215 subsegs.o \
216 symbols.o \
217 version.o \
218 write.o \
219 xmalloc.o \
220 xrealloc.o
221
222 #### host, target, and site specific Makefile frags come in here.
223
224 # Definition of `all' is here so that new rules inserted by sed
225 # do not specify the default target.
226 # The real definition is under `all.internal'.
227
228 all: $(ALL)
229
230 fake-as: force
231 - rm -f ./as.new
232 cp /bin/as ./as.new
233 touch fake-as
234
235 # Now figure out from those variables how to compile and link.
236
237 # This is the variable actually used when we compile.
238 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(CFLAGS) $(HDEFINES) $(TDEFINES)
239
240 # Even if ALLOCA is set, don't use it if compiling with GCC.
241 USE_ALLOCA= `if [ x"${CC}" = x"${OLDCC}" ] ; then echo ${ALLOCA}; else true; fi`
242 USE_HOST_ALLOCA= `if [ x"${CC}" = x"${OLDCC}" ] ; then echo ${HOST_PREFIX}${ALLOCA}; else true; fi`
243
244 # Likewise, for use in the tools that must run on this machine
245 # even if we are cross-building GCC.
246 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
247 HOST_LIBDEPS= $(HOST_PREFIX)$(OBSTACK) $(HOST_PREFIX)$(ALLOCA) $(HOST_PREFIX)$(MALLOC)
248
249 # How to link with both our special library facilities
250 # and the system's installed libraries.
251
252 LIBS = $(LOCAL_LOADLIBES) $(CLIB) $(srcdir)/../libiberty`if [ -d $(srcdir)/libiberty.$(target) ] ; then echo .$(target) ; fi`$(subdir)/libiberty.a
253
254 # Likewise, for use in the tools that must run on this machine
255 # even if we are cross-building GCC.
256 HOST_LIBS = $(HOST_PREFIX)$(OBSTACK) $(USE_HOST_ALLOCA) $(HOST_PREFIX)$(MALLOC) $(CLIB)
257
258 # Specify the directories to be searched for header files.
259 # Both . and srcdir are used, in that order,
260 # so that tm.h and config.h will be found in the compilation
261 # subdirectory rather than in the source directory.
262 INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
263 SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
264
265 # Always use -I$(srcdir)/config when compiling.
266 .c.o:
267 $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $<
268
269 # This tells GNU make version 3 not to export all the variables
270 # defined in this file into the environment.
271 .NOEXPORT:
272 \f
273 # Files to be copied away after each stage in building.
274 STAGE_GCC=gcc
275 STAGESTUFF = *.o as.new
276
277 # The files that "belong" in CONFIG_H are deliberately omitted
278 # because having them there would not be useful in actual practice.
279 # All they would do is cause complete recompilation every time
280 # one of the machine description files is edited.
281 # That may or may not be what one wants to do.
282 # If it is, rm *.o is an easy way to do it.
283 # CONFIG_H = config.h tm.h
284 CONFIG_H =
285 \f
286 as.new: $(OBJS) $(LIBDEPS)
287 -mv -f as.new as.old
288 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
289
290 objdump:
291
292 all.internal: native
293 # This is what is made with the host's compiler if making a cross assembler.
294 native: config.status as
295
296 config.status:
297 @echo You must configure gas. Look at the INSTALL file for details.
298 @false
299
300 compilations: ${OBJS}
301
302 # Compiling object files from source files.
303
304 app.o : app.c as.h host.h targ-env.h obj-format.h \
305 targ-cpu.h struc-symbol.h \
306 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
307 as.o : as.c as.h host.h targ-env.h obj-format.h \
308 targ-cpu.h struc-symbol.h \
309 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
310 atof-generic.o : atof-generic.c as.h host.h targ-env.h obj-format.h \
311 targ-cpu.h struc-symbol.h \
312 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
313 bignum-copy.o : bignum-copy.c as.h host.h \
314 targ-env.h obj-format.h \
315 targ-cpu.h struc-symbol.h \
316 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
317 cond.o : cond.c as.h host.h targ-env.h obj-format.h \
318 targ-cpu.h struc-symbol.h \
319 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
320
321 debug.o : debug.c as.h host.h targ-env.h obj-format.h \
322 targ-cpu.h struc-symbol.h \
323 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
324 subsegs.h
325 expr.o : expr.c as.h host.h targ-env.h obj-format.h \
326 targ-cpu.h struc-symbol.h \
327 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
328
329 flonum-const.o : flonum-const.c flonum.h bignum.h
330 flonum-copy.o : flonum-copy.c as.h host.h targ-env.h obj-format.h \
331 targ-cpu.h struc-symbol.h \
332 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
333 flonum-mult.o : flonum-mult.c flonum.h bignum.h
334 frags.o : frags.c as.h host.h targ-env.h obj-format.h \
335 targ-cpu.h struc-symbol.h \
336 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
337 subsegs.h
338 hash.o : hash.c as.h host.h targ-env.h obj-format.h \
339 targ-cpu.h struc-symbol.h \
340 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
341 hex-value.o : hex-value.c
342 input-file.o : input-file.c as.h host.h \
343 targ-env.h obj-format.h targ-cpu.h \
344 struc-symbol.h write.h flonum.h bignum.h expr.h \
345 frags.h hash.h read.h symbols.h tc.h obj.h input-file.h
346 input-scrub.o : input-scrub.c /usr/include/errno.h /usr/include/sys/errno.h \
347 as.h host.h targ-env.h obj-format.h \
348 targ-cpu.h struc-symbol.h \
349 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
350 input-file.h
351 messages.o : messages.c as.h host.h targ-env.h obj-format.h \
352 targ-cpu.h struc-symbol.h \
353 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
354 obstack.o : obstack.c
355 output-file.o : output-file.c as.h host.h targ-env.h obj-format.h \
356 targ-cpu.h struc-symbol.h \
357 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
358 output-file.h
359 read.o : read.c as.h host.h targ-env.h obj-format.h \
360 targ-cpu.h struc-symbol.h \
361 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
362
363 strstr.o : strstr.c
364 subsegs.o : subsegs.c as.h host.h targ-env.h obj-format.h \
365 targ-cpu.h struc-symbol.h \
366 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
367 subsegs.h
368 symbols.o : symbols.c as.h host.h targ-env.h obj-format.h \
369 targ-cpu.h struc-symbol.h \
370 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
371 subsegs.h
372 version.o : version.c
373 write.o : write.c as.h host.h targ-env.h obj-format.h \
374 targ-cpu.h struc-symbol.h \
375 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
376 subsegs.h output-file.h
377 xmalloc.o : xmalloc.c
378 xrealloc.o : xrealloc.c
379 atof-targ.o : atof-targ.c as.h host.h targ-env.h obj-format.h \
380 targ-cpu.h struc-symbol.h \
381 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
382 symbols.h tc.h obj.h
383 obj-format.o : obj-format.c as.h host.h targ-env.h obj-format.h \
384 targ-cpu.h struc-symbol.h \
385 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
386 symbols.h tc.h obj.h
387 targ-cpu.o : targ-cpu.c targ-env.h obj-format.h \
388 targ-cpu.h struc-symbol.h \
389 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
390 symbols.h tc.h obj.h $(TARG_CPU_DEPENDENTS)
391
392 \f
393 # Compile the libraries to be used by gen*.
394 # If we are not cross-building, gen* use the same .o's that cc1 will use,
395 # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
396 # with the rules for rtl.o, alloca.o, etc.
397 $(HOST_PREFIX_1)alloca.o: alloca.c
398 rm -f $(HOST_PREFIX)alloca.c
399 cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
400 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
401
402 $(HOST_PREFIX_1)obstack.o: obstack.c
403 rm -f $(HOST_PREFIX)obstack.c
404 cp $(srcdir)/obstack.c $(HOST_PREFIX)obstack.c
405 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
406
407 $(HOST_PREFIX_1)malloc.o: malloc.c
408 rm -f $(HOST_PREFIX)malloc.c
409 cp $(srcdir)/malloc.c $(HOST_PREFIX)malloc.c
410 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
411 \f
412 # Remake the info files.
413
414 doc: $(srcdir)/gas.info
415
416 $(srcdir)/gas.info: $(srcdir)/gas.texinfo
417 makeinfo `echo $(srcdir)/gas.texinfo | sed 's,^\./,,'`
418
419 \f
420 # Deletion of files made during compilation.
421 # There are three levels of this: `clean', `cleanconfig' and `realclean'.
422 # `clean' deletes what you want to delete ordinarily to save space.
423 # This is most, but not all, of the files made by compilation.
424 # `cleanconfig' also deletes everything depending
425 # on the choice of config files.
426 # `realclean' also deletes everything that could be regenerated automatically.
427
428 clean:
429 -rm -f $(STAGESTUFF)
430 # Delete the temporary source copies for cross compilation.
431 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
432 -rm -f $(HOST_PREFIX_1)obstack.c
433 # Delete the stamp files except stamp-gnulib2.
434 -rm -f core
435
436 # Like clean but also delete the links made to configure gas.
437 cleanconfig: clean
438 -rm -f config.status Makefile host.h targ-env.h
439 -rm -f targ-cpu.h targ-cpu.c
440 -rm -f obj-format.h obj-format.c
441 -rm -f atof-targ.c
442
443 # Get rid of every file that's generated from some other file (except INSTALL).
444 realclean: cleanconfig
445 -rm -f gas.aux gas.cps gas.fns gas.info gas.kys gas.pgs gas.tps gas.vrs
446 -rm -f TAGS
447 -rm -f gas.info* gas.?? gas.??s gas.log gas.toc gas.*aux
448 -rm -f *.dvi
449 \f
450 # Entry points `install', `includes' and `uninstall'.
451
452 # Copy the files into directories where they will be run.
453 install: $(ALL)
454 $(INSTALL_PROGRAM) $(ALL) $(libsubdir)/as
455
456 # Create the installation directory.
457 install-dir:
458 -mkdir $(libdir)
459 -mkdir $(libdir)/gcc
460 -mkdir $(libdir)/gcc/$(target)
461 -mkdir $(libdir)/gcc/$(target)/$(version)
462
463 # Install the compiler executables built during cross compilation.
464 install-cross: native install-dir
465 -if [ -f cc1 ] ; then $(INSTALL_PROGRAM) cc1 $(libsubdir)/cc1; else true; fi
466 -if [ -f cc1plus ] ; then $(INSTALL_PROGRAM) cc1plus $(libsubdir)/cc1plus; else true; fi
467 $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
468 ./gcc -dumpspecs > $(libsubdir)/specs
469 $(INSTALL_PROGRAM) gcc $(bindir)/gcc
470
471 # Install the man pages.
472 install-man: install-dir $(srcdir)/gcc.1 protoize.1 unprotoize.1
473 $(INSTALL_FILE) $(srcdir)/gcc.1 $(mandir)/gcc.$(manext)
474 chmod a-x $(mandir)/gcc.$(manext)
475 $(INSTALL_FILE) $(srcdir)/protoize.1 $(mandir)/protoize.$(manext)
476 chmod a-x $(mandir)/protoize.$(manext)
477 $(INSTALL_FILE) $(srcdir)/unprotoize.1 $(mandir)/unprotoize.$(manext)
478 chmod a-x $(mandir)/unprotoize.$(manext)
479
480 # Cancel installation by deleting the installed files.
481 uninstall:
482 -rm -rf $(libsubdir)
483 -rm -rf $(bindir)/as
484 -rm -rf $(mandir)/gas.$(manext)
485
486 \f
487 # These exist for maintenance purposes.
488
489 tags TAGS: force
490 etags $(REAL_SOURCES) $(REAL_HEADERS) README Makefile config/*.[hc]
491
492 bootstrap: $(ALL) force
493 $(MAKE) stage1
494 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(ALL)
495 $(MAKE) stage2
496 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(ALL)
497 $(MAKE) comparison against=stage2
498
499 bootstrap2: force
500 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(ALL)
501 $(MAKE) stage2
502 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(ALL)
503 $(MAKE) comparison against=stage2
504
505 bootstrap3: force
506 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(ALL)
507 $(MAKE) comparison against=stage2
508
509 # Copy the object files from a particular stage into a subdirectory.
510 stage1: force
511 -mkdir stage1
512 -mv $(STAGESTUFF) stage1
513 (cd stage1 ; ln as.new as)
514
515 stage2: force
516 -mkdir stage2
517 -mv $(STAGESTUFF) stage2
518 (cd stage2 ; ln as.new as)
519
520 stage3: force
521 -mkdir stage3
522 -mv $(STAGESTUFF) stage3
523 (cd stage3 ; ln as.new as)
524
525 against=stage2
526
527 comparison: force
528 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
529
530 de-stage1: force
531 - (cd stage1 ; rm as ; mv -f * ..)
532 - rmdir stage1
533
534 de-stage2: force
535 - (cd stage2 ; rm as ; mv -f * ..)
536 - rmdir stage2
537
538 de-stage3: force
539 - (cd stage3 ; rm as ; mv -f * ..)
540 - rmdir stage3
541
542 # Copy just the executable files from a particular stage into a subdirectory,
543 # and delete the object files. Use this if you're just verifying a version
544 # that is pretty sure to work, and you are short of disk space.
545 risky-stage1: force
546 -mkdir stage1
547 -mv cc1 cpp cccp gcc stage1
548 -rm -f stage1/gnulib
549 -cp gnulib stage1 && $(RANLIB) stage1/gnulib
550 -make clean
551
552 risky-stage2: force
553 -mkdir stage2
554 -mv cc1 cpp cccp gcc stage2
555 -rm -f stage2/gnulib
556 -cp gnulib stage2 && $(RANLIB) stage2/gnulib
557 -make clean
558
559 risky-stage3: force
560 -mkdir stage3
561 -mv cc1 cpp cccp gcc stage3
562 -rm -f stage3/gnulib
563 -cp gnulib stage3 && $(RANLIB) stage3/gnulib
564 -make clean
565
566 risky-stage4: force
567 -mkdir stage4
568 -mv cc1 cpp cccp gcc stage4
569 -rm -f stage4/gnulib
570 -cp gnulib stage4 && $(RANLIB) stage4/gnulib
571 -make clean
572
573 #In GNU Make, ignore whether `stage*' exists.
574 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
575 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
576
577 force:
578
579 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
580 $(SHELL) ./config.status
581
This page took 0.043464 seconds and 5 git commands to generate.