diff options
author | Nick Clifton <nickc@redhat.com> | 2001-04-24 15:22:25 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-04-24 15:22:25 +0000 |
commit | 6840198f93340023b478d4df838efb37b9b27998 (patch) | |
tree | f456409a1dcc4b56504c63543d007a08d8649371 /gas/doc/Makefile.in | |
parent | b3baf5d0a8293b5f823c0d7848494507edb373fb (diff) | |
download | gdb-6840198f93340023b478d4df838efb37b9b27998.zip gdb-6840198f93340023b478d4df838efb37b9b27998.tar.gz gdb-6840198f93340023b478d4df838efb37b9b27998.tar.bz2 |
z8k fixes
Diffstat (limited to 'gas/doc/Makefile.in')
-rw-r--r-- | gas/doc/Makefile.in | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/gas/doc/Makefile.in b/gas/doc/Makefile.in index 578f8dc..033ee0e 100644 --- a/gas/doc/Makefile.in +++ b/gas/doc/Makefile.in @@ -132,7 +132,31 @@ man_MANS = as.1 info_TEXINFOS = as.texinfo gasp.texi -CPU_DOCS = c-a29k.texi c-arc.texi c-arm.texi c-d10v.texi c-h8300.texi c-h8500.texi c-hppa.texi c-i370.texi c-i386.texi c-i860.texi c-i960.texi c-m32r.texi c-m68hc11.texi c-m68k.texi c-mips.texi c-ns32k.texi c-pdp11.texi c-pj.texi c-sh.texi c-sparc.texi c-tic54x.texi c-vax.texi c-v850.texi c-z8k.texi +CPU_DOCS = \ + c-a29k.texi \ + c-arc.texi \ + c-arm.texi \ + c-d10v.texi \ + c-h8300.texi \ + c-h8500.texi \ + c-hppa.texi \ + c-i370.texi \ + c-i386.texi \ + c-i860.texi \ + c-i960.texi \ + c-m32r.texi \ + c-m68hc11.texi \ + c-m68k.texi \ + c-mips.texi \ + c-ns32k.texi \ + c-pdp11.texi \ + c-pj.texi \ + c-sh.texi \ + c-sparc.texi \ + c-tic54x.texi \ + c-vax.texi \ + c-v850.texi \ + c-z8k.texi # This one isn't ready for prime time yet. Not even a little bit. @@ -340,7 +364,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ - cp -pr $$/$$file $(distdir)/$$file; \ + cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |