$(RM) doesn't require -f

This commit is contained in:
Devin Torres 2013-09-25 19:48:59 -05:00
parent 390dbc1dac
commit 3d0599d959
2 changed files with 6 additions and 4 deletions

View file

@ -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

View file

@ -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