From: Mike D. Lowis Date: Thu, 19 Apr 2012 20:52:40 +0000 (-0400) Subject: Fixed double entry of flags for RM commands X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=ca730728f373ad255ec68a404ac8eb9c1b75d279;p=archive%2Fparse-utils.git Fixed double entry of flags for RM commands --- diff --git a/Makefile b/Makefile index 45505b6..04c5de8 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ $(STATIC_NAME): $(OBJ_FILES) $(OBJ_FILES): %.o : %.$(SRC_FTYPE) clean: - $(RM) -f $(foreach dir,$(SRC_DIRS), $(dir)*.o) - $(RM) -f $(SHARED_NAME) - $(RM) -f $(STATIC_NAME) + $(RM) $(foreach dir,$(SRC_DIRS), $(dir)*.o) + $(RM) $(SHARED_NAME) + $(RM) $(STATIC_NAME)