Fix mistaken changes in Makefile's clean target

I was a bit too trigger-happy with copy-pasting in a previous commit...
This commit is contained in:
Manuel Pégourié-Gonnard 2015-06-25 14:18:20 +02:00
parent dc54ff8578
commit ea9556a76e
2 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ clean:
ifndef WINDOWS
rm -f $(APPS)
else
del /Q /F *.c *.exe
del /S /Q /F *.o *.exe
endif
list:

View File

@ -424,7 +424,7 @@ test_suite_version$(EXEXT): test_suite_version.c $(DEP)
clean:
ifndef WINDOWS
rm -f $(APPS)
rm -f $(APPS) *.c
else
del /Q /F *.c *.exe
endif