Makefile.mingw clean now uses rm instead of del.
This commit is contained in:
parent
bbf0011e95
commit
9d3a3132ac
1 changed files with 3 additions and 3 deletions
|
|
@ -33,9 +33,9 @@ PCem.exe: $(OBJ) $(FMOBJ) $(SIDOBJ)
|
|||
all : PCem.exe
|
||||
|
||||
clean :
|
||||
del *.o
|
||||
del *.exe
|
||||
del *.res
|
||||
rm *.o
|
||||
rm *.exe
|
||||
rm *.res
|
||||
|
||||
%.o : %.c
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
|
|
|||
Loading…
Reference in a new issue