From 3d0599d9597354c3f9489e76fcd5cf9ee78951f6 Mon Sep 17 00:00:00 2001 From: Devin Torres Date: Wed, 25 Sep 2013 19:48:59 -0500 Subject: [PATCH] $(RM) doesn't require -f --- Makefile | 6 +++--- Makefile.win | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a331372..55cd658 100644 --- a/Makefile +++ b/Makefile @@ -48,9 +48,9 @@ test: hoedown # Housekeeping clean: - $(RM) -f src/*.o examples/*.o - $(RM) -f libhoedown.so libhoedown.so.1 hoedown smartypants - $(RM) -f hoedown.exe smartypants.exe + $(RM) src/*.o examples/*.o + $(RM) libhoedown.so libhoedown.so.1 hoedown smartypants + $(RM) hoedown.exe smartypants.exe # Generic object compilations diff --git a/Makefile.win b/Makefile.win index 6ef3267..4be255c 100644 --- a/Makefile.win +++ b/Makefile.win @@ -25,7 +25,9 @@ smartypants.exe: examples\smartypants.obj $(HOEDOWN_SRC) # Housekeeping clean: - del $(HOEDOWN_SRC) hoedown.dll hoedown.exe hoedown.exp hoedown.lib smartypants.exe + del $(HOEDOWN_SRC) + del hoedown.dll hoedown.exp hoedown.lib + del hoedown.exe smartypants.exe # Generic object compilations