diff options
author | K. Richard Pixley <rich@cygnus> | 1991-04-11 02:24:30 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-04-11 02:24:30 +0000 |
commit | 61907f5122ae2f40f8d3025eb5d6f5f80ee13b5f (patch) | |
tree | 7025a5f613b918a55a9ef623dd57989435bd1d4c /gas/Makefile.in | |
parent | 8fb360783f973a479705e3098121e5b136b6aa71 (diff) | |
download | gdb-61907f5122ae2f40f8d3025eb5d6f5f80ee13b5f.zip gdb-61907f5122ae2f40f8d3025eb5d6f5f80ee13b5f.tar.gz gdb-61907f5122ae2f40f8d3025eb5d6f5f80ee13b5f.tar.bz2 |
Cut 2 config. Subdirs.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index 3f263d1..79cad4e 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -290,6 +290,8 @@ CONFIG_H = gas: $(OBJS) $(LIBDEPS) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o gas $(OBJS) $(LIBS) +objdump: + all.internal: native # This is what is made with the host's compiler if making a cross assembler. native: config.status gas @@ -511,11 +513,11 @@ bootstrap2: force $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= gas $(MAKE) stage2 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= gas - for i in *.o; do cmp $$i stage2/$$i; done + $(MAKE) stage-last bootstrap3: force $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= gas - for i in *.o; do cmp $$i stage2/$$i; done + $(MAKE) comparison # Copy the object files from a particular stage into a subdirectory. stage1: force @@ -543,6 +545,9 @@ stage4: force -cp gnulib stage4 -if $(RANLIB_TEST) ; then $(RANLIB) stage4/gnulib; else true; fi +stage-last: + for i in *.o; do cmp $$i stage2/$$i; done + # Copy just the executable files from a particular stage into a subdirectory, # and delete the object files. Use this if you're just verifying a version # that is pretty sure to work, and you are short of disk space. @@ -578,7 +583,17 @@ risky-stage4: force .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4 +comparison: clean + $(MAKE) "CC=/usr/local/bin/gcc -Wall" gas + $(MAKE) stage1 + - $(MAKE) "CC=/usr/local/bin/gcc -Wall -b$(target) -Bstage1/" gas -k + $(MAKE) stage2 + - $(MAKE) "CC=/usr/local/bin/gcc -Wall -b$(target)" gas -k + $(MAKE) stage-last + force: Makefile: $(srcdir)/Makefile.in $(srcdir)/configure - (cd $(srcdir) ; configure -host=$(host) $(target)) + (cd $(srcdir) ; \ + ./configure `if [ "$(srcdir)" != "." ] ; then echo +f; fi` -host=$(host) $(target)) + |