diff --git a/Start_Windows/makefile b/Start_Windows/makefile index 72cccb7..a05e3df 100644 --- a/Start_Windows/makefile +++ b/Start_Windows/makefile @@ -35,11 +35,15 @@ graphicalGame.o: graphicalGame.c # -------------------------- TEST_BIN = runTests -test: input.o game.o unit_tests.c - $(CC) $(CFLAGS) -I$(unityfolder) -o $(TEST_BIN) input.o game.o unit_tests.c $(BINARIES)/libunity.a +#test: input.o game.o unit_tests.c +# $(CC) $(CFLAGS) -I$(unityfolder) -o $(TEST_BIN) input.o game.o unit_tests.c $(BINARIES)/libunity.a +test: input.o game.o unit_tests.c $(unityfolder)/unity.c + $(CC) $(CFLAGS) -I$(unityfolder) -o $(TEST_BIN) input.o game.o unit_tests.c $(unityfolder)/unity.c # -------------------------- # Clean # -------------------------- +#clean: +# del /f *.o *.exe clean: - del /f *.o *.exe + rm -f *.o *.exe