diff options
author | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:16:41 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:16:41 +0000 |
commit | da7aaffbae21e9ecc3e3a29a5d64219b966b3d0d (patch) | |
tree | b6edcafecef41e360275b3ebf7d985c79828a3c0 /gas/Makefile.in | |
parent | 68cd7865a67bafa1b8f706568b8632149324f615 (diff) | |
download | gdb-da7aaffbae21e9ecc3e3a29a5d64219b966b3d0d.zip gdb-da7aaffbae21e9ecc3e3a29a5d64219b966b3d0d.tar.gz gdb-da7aaffbae21e9ecc3e3a29a5d64219b966b3d0d.tar.bz2 |
The apollo make does not like lines which end in a backslash, but do not have
anything following (it tries to interpret the next line as a command; for
this file, the next line was merely more rules).
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index 215dd84..b255652 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -231,16 +231,16 @@ bignum-copy.o : bignum-copy.c as.h host.h \ write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h cond.o : cond.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ - write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \ - + write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h + debug.o : debug.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \ subsegs.h expr.o : expr.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ - write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \ - + write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h + flonum-konst.o : flonum-konst.c flonum.h bignum.h flonum-copy.o : flonum-copy.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ @@ -276,8 +276,8 @@ output-file.o : output-file.c as.h host.h targ-env.h obj-format.h \ output-file.h read.o : read.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ - write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \ - + write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h + strerror.o : strerror.c strstr.o : strstr.c subsegs.o : subsegs.c as.h host.h targ-env.h obj-format.h \ @@ -335,6 +335,8 @@ install: $(INSTALL_PROGRAM) as.new $(bindir)/$(program_prefix)as -rm -f $(tooldir)/as ln $(bindir)/$(program_prefix)as $(tooldir)/as + -rm -f $(man1dir)/$(program_prefix)as.1 + $(INSTALL_DATA) $(srcdir)/doc/as.1 $(man1dir)/$(program_prefix)as.1 # Create the installation directory. install-dir: |