Minor fix in linux Makefile

This commit is contained in:
Alberto Ortega 2015-03-20 14:54:49 +01:00
parent cde905703a
commit 8dbe3511c5
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ CFLAGS = $(INCS) -O1
all: $(BIN)
clean:
rm -f Objects\MingW\*.o
rm -f Objects\MingW\*.res
rm -f Output\MingW\*.exe
rm -f Objects/MingW/*.o
rm -f Objects/MingW/*.res
rm -f Output/MingW/*.exe
$(BIN): $(OBJ)
$(LINK) $(LINKOBJ) -o "$(BIN)" $(LIBS)