From b6b98b53fcb26e0ca88d1351fe4014a8c5676888 Mon Sep 17 00:00:00 2001 From: Bastian Date: Sun, 2 Nov 2025 20:15:43 +0100 Subject: [PATCH] Makefile angepasst --- Start_Windows/makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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