summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-03-16 22:46:02 +0000
committerwtc%netscape.com <devnull@localhost>2000-03-16 22:46:02 +0000
commitb8e9c35181ffc9199ca2bb9e71f0d4c2d1e33ff7 (patch)
tree1f9f8d2380994b801f9a6c7f5d5f68fdd0214edc /Makefile.in
parent286e19e4a370103d82bf6c1f895a0773b3261c83 (diff)
downloadnspr-hg-b8e9c35181ffc9199ca2bb9e71f0d4c2d1e33ff7.tar.gz
Bugzilla bug #29427: implemented the 'distclean' target and made
'realclean' and 'clobber_all' synonymous with 'distclean'. This patch is contributed by Chris Seawood <cls@seawood.org>. r=wtc@netscape.com Modified files: Makefile, Makefile.in, configure, configure.in, config/Makefile.in, config/config.mk, config/rules.mk
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 8ff221b8..ae4ff207 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -31,6 +31,8 @@ PR_CLIENT_BUILD = 1
PR_CLIENT_BUILD_UNIX = 1
endif
+DIST_GARBAGE = config.cache config.log config.status dist
+
include $(topsrcdir)/config/rules.mk
#
@@ -49,6 +51,12 @@ ifdef PR_CLIENT_BUILD_UNIX
endif
endif
+# Delete config/autoconf.mk last because it is included by every makefile.
+distclean realclean clobber_all::
+ @echo "cd pr/tests; $(MAKE) $@"
+ @$(MAKE) -C pr/tests $@
+ rm -f config/autoconf.mk
+
release::
echo $(BUILD_NUMBER) > $(RELEASE_DIR)/$(BUILD_NUMBER)/version.df
@if test -f imports.df; then \