$(RM) doesn't require -f
This commit is contained in:
parent
390dbc1dac
commit
3d0599d959
2 changed files with 6 additions and 4 deletions
6
Makefile
6
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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue