summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-01-04 21:27:36 +0000
committerwtchang%redhat.com <devnull@localhost>2005-01-04 21:27:36 +0000
commit4cea263f682eb92d3eda953c89e5e6262f69b44f (patch)
tree454173b2162cfd43300c69b0a0c77ae39a5999c9
parent1dc1127a6d4d2ac06ed9e38f5a6f69d56a9d5f81 (diff)
downloadnspr-hg-4cea263f682eb92d3eda953c89e5e6262f69b44f.tar.gz
Bugzilla Bug 274751: fixed the regression that the *.res files were not
removed by the various clean or clobber makefile targets. r=cls. Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
-rw-r--r--config/rules.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/rules.mk b/config/rules.mk
index e6f6b6b5..8f08182e 100644
--- a/config/rules.mk
+++ b/config/rules.mk
@@ -165,7 +165,7 @@ ifeq ($(MOZ_OS2_TOOLS),VACPP)
EXTRA_LIBS := $(patsubst -l%,$(DIST)/lib/%.$(LIB_SUFFIX),$(EXTRA_LIBS))
endif
-ALL_TRASH = $(TARGETS) $(OBJS) $(filter-out . .., $(OBJDIR)) LOGS TAGS $(GARBAGE) \
+ALL_TRASH = $(TARGETS) $(OBJS) $(RES) $(filter-out . .., $(OBJDIR)) LOGS TAGS $(GARBAGE) \
$(NOSUCHFILE) \
so_locations
@@ -208,11 +208,11 @@ libs:: export
install:: export
clean::
- rm -rf $(OBJS) so_locations $(NOSUCHFILE) $(GARBAGE)
+ rm -rf $(OBJS) $(RES) so_locations $(NOSUCHFILE) $(GARBAGE)
+$(LOOP_OVER_DIRS)
clobber::
- rm -rf $(OBJS) $(TARGETS) $(filter-out . ..,$(OBJDIR)) $(GARBAGE) so_locations $(NOSUCHFILE)
+ rm -rf $(OBJS) $(RES) $(TARGETS) $(filter-out . ..,$(OBJDIR)) $(GARBAGE) so_locations $(NOSUCHFILE)
+$(LOOP_OVER_DIRS)
realclean clobber_all::