* Makefile.am (DISTCLEANFILES): Add site.exp and site.bak.
(MOSTLYCLEANFILES): Add binutils.log, binutils.sum, and abcdefgh*. (mostlyclean-local): New target. * Makefile.in: Rebuild.
This commit is contained in:
parent
193bbe8581
commit
5327f59f00
3 changed files with 34 additions and 7 deletions
|
@ -1,3 +1,18 @@
|
||||||
|
Fri Apr 3 14:48:42 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* Makefile.am (DISTCLEANFILES): Add site.exp and site.bak.
|
||||||
|
(MOSTLYCLEANFILES): Add binutils.log, binutils.sum, and abcdefgh*.
|
||||||
|
(mostlyclean-local): New target.
|
||||||
|
* Makefile.in: Rebuild.
|
||||||
|
|
||||||
|
Wed Apr 1 15:54:16 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
From Zack Weinberg <zack@rabi.phys.columbia.edu> and H.J. Lu
|
||||||
|
<hjl@gnu.org>:
|
||||||
|
* ar.c (usage): Mention S modifier.
|
||||||
|
(main): Add S modifier.
|
||||||
|
* ar.1, binutils.texi: Document S modifier.
|
||||||
|
|
||||||
Wed Apr 1 13:11:23 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
Wed Apr 1 13:11:23 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
* binutils.texi: Use @itemx for a secondary item in a table.
|
* binutils.texi: Use @itemx for a secondary item in a table.
|
||||||
|
|
|
@ -243,7 +243,8 @@ DISTSTUFF = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
|
||||||
syslex.c deflex.c
|
syslex.c deflex.c
|
||||||
diststuff: $(DISTSTUFF) info
|
diststuff: $(DISTSTUFF) info
|
||||||
|
|
||||||
DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h
|
DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h \
|
||||||
|
site.exp site.bak
|
||||||
|
|
||||||
# Targets to rebuild dependencies in this Makefile.
|
# Targets to rebuild dependencies in this Makefile.
|
||||||
# Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
|
# Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
|
||||||
|
@ -260,10 +261,12 @@ DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h
|
||||||
$(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
|
$(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
|
||||||
|
|
||||||
dep.sed: dep-in.sed config.status
|
dep.sed: dep-in.sed config.status
|
||||||
|
objdir=`pwd`; \
|
||||||
sed <$(srcdir)/dep-in.sed >dep.sed \
|
sed <$(srcdir)/dep-in.sed >dep.sed \
|
||||||
-e 's!@INCDIR@!$(INCDIR)!' \
|
-e 's!@INCDIR@!$(INCDIR)!' \
|
||||||
-e 's!@BFDDIR@!$(BFDDIR)!' \
|
-e 's!@BFDDIR@!$(BFDDIR)!' \
|
||||||
-e 's!@SRCDIR@!$(srcdir)!'
|
-e 's!@SRCDIR@!$(srcdir)!' \
|
||||||
|
-e "s!@OBJDIR@!$${objdir}!"
|
||||||
|
|
||||||
dep: .dep
|
dep: .dep
|
||||||
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
||||||
|
@ -296,7 +299,10 @@ $(DEMANGLER_PROG).1: cxxfilt.man Makefile
|
||||||
sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
|
sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
|
||||||
> $(DEMANGLER_PROG).1
|
> $(DEMANGLER_PROG).1
|
||||||
|
|
||||||
MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1
|
MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1 binutils.log binutils.sum \
|
||||||
|
abcdefgh*
|
||||||
|
mostlyclean-local:
|
||||||
|
-rm -rf tmpdir
|
||||||
|
|
||||||
CLEANFILES = dep.sed .dep .dep1
|
CLEANFILES = dep.sed .dep .dep1
|
||||||
|
|
||||||
|
|
|
@ -238,9 +238,11 @@ windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@
|
||||||
DISTSTUFF = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
|
DISTSTUFF = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
|
||||||
syslex.c deflex.c
|
syslex.c deflex.c
|
||||||
|
|
||||||
DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h
|
DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h \
|
||||||
|
site.exp site.bak
|
||||||
|
|
||||||
MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1
|
MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1 binutils.log binutils.sum \
|
||||||
|
abcdefgh*
|
||||||
|
|
||||||
CLEANFILES = dep.sed .dep .dep1
|
CLEANFILES = dep.sed .dep .dep1
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
|
@ -866,7 +868,7 @@ maintainer-clean-generic:
|
||||||
mostlyclean: mostlyclean-hdr mostlyclean-binPROGRAMS \
|
mostlyclean: mostlyclean-hdr mostlyclean-binPROGRAMS \
|
||||||
mostlyclean-noinstPROGRAMS mostlyclean-compile \
|
mostlyclean-noinstPROGRAMS mostlyclean-compile \
|
||||||
mostlyclean-libtool mostlyclean-aminfo mostlyclean-tags \
|
mostlyclean-libtool mostlyclean-aminfo mostlyclean-tags \
|
||||||
mostlyclean-generic
|
mostlyclean-generic mostlyclean-local
|
||||||
|
|
||||||
clean: clean-hdr clean-binPROGRAMS clean-noinstPROGRAMS clean-compile \
|
clean: clean-hdr clean-binPROGRAMS clean-noinstPROGRAMS clean-compile \
|
||||||
clean-libtool clean-aminfo clean-tags clean-generic \
|
clean-libtool clean-aminfo clean-tags clean-generic \
|
||||||
|
@ -1002,10 +1004,12 @@ diststuff: $(DISTSTUFF) info
|
||||||
$(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
|
$(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
|
||||||
|
|
||||||
dep.sed: dep-in.sed config.status
|
dep.sed: dep-in.sed config.status
|
||||||
|
objdir=`pwd`; \
|
||||||
sed <$(srcdir)/dep-in.sed >dep.sed \
|
sed <$(srcdir)/dep-in.sed >dep.sed \
|
||||||
-e 's!@INCDIR@!$(INCDIR)!' \
|
-e 's!@INCDIR@!$(INCDIR)!' \
|
||||||
-e 's!@BFDDIR@!$(BFDDIR)!' \
|
-e 's!@BFDDIR@!$(BFDDIR)!' \
|
||||||
-e 's!@SRCDIR@!$(srcdir)!'
|
-e 's!@SRCDIR@!$(srcdir)!' \
|
||||||
|
-e "s!@OBJDIR@!$${objdir}!"
|
||||||
|
|
||||||
dep: .dep
|
dep: .dep
|
||||||
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
||||||
|
@ -1037,6 +1041,8 @@ binutils.info: $(srcdir)/binutils.texi config.texi
|
||||||
$(DEMANGLER_PROG).1: cxxfilt.man Makefile
|
$(DEMANGLER_PROG).1: cxxfilt.man Makefile
|
||||||
sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
|
sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
|
||||||
> $(DEMANGLER_PROG).1
|
> $(DEMANGLER_PROG).1
|
||||||
|
mostlyclean-local:
|
||||||
|
-rm -rf tmpdir
|
||||||
|
|
||||||
.PHONY: install-exec-local
|
.PHONY: install-exec-local
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue