From abaeeab5d43be849698034ac41d0b906c52fb869 Mon Sep 17 00:00:00 2001 From: "wtchang%redhat.com" Date: Tue, 4 Jan 2005 19:52:10 +0000 Subject: [PATCH] Bugzilla Bug 274751: fixed the regression that the *.res files were not removed by the various clean or clobber makefile targets. r=cls. --- nsprpub/config/rules.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nsprpub/config/rules.mk b/nsprpub/config/rules.mk index e6f6b6b5042f..8f08182e16f5 100644 --- a/nsprpub/config/rules.mk +++ b/nsprpub/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::