From 5738b681d8498a636aeebafa364080c3980c8e63 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sun, 6 Mar 2016 17:03:47 -0500 Subject: [PATCH] Rogue V5: prevent error messages from 'make clean'. Using 'rm -f' will not cause an error if the file to be removed is already gone. --- rogue5/Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rogue5/Makefile.in b/rogue5/Makefile.in index b125485..f9181ae 100644 --- a/rogue5/Makefile.in +++ b/rogue5/Makefile.in @@ -142,8 +142,7 @@ clean: $(RM) core a.exe a.out a.exe.stackdump $(PROGRAM) $(PROGRAM).exe $(RM) $(PROGRAM).tar $(PROGRAM).tar.gz $(PROGRAM).zip $(RM) $(DOCS) - $(RM) $(DISTNAME)/* - -rmdir $(DISTNAME) + $(RM) -r $(DISTNAME) maintainer-clean: $(RM) config.h