From dabd3fea99494dee63794ae3e26597e678820a27 Mon Sep 17 00:00:00 2001 From: schneideral98915 Date: Wed, 22 Oct 2025 16:32:50 +0200 Subject: [PATCH] =?UTF-8?q?Hinzuf=C3=BCgen=20von=20#MyMakefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Start_Windows/makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Start_Windows/makefile b/Start_Windows/makefile index 72cccb7..1c75a36 100644 --- a/Start_Windows/makefile +++ b/Start_Windows/makefile @@ -43,3 +43,9 @@ test: input.o game.o unit_tests.c # -------------------------- clean: del /f *.o *.exe + +# -------------------------- +# My Version +# -------------------------- +wordsalad_myversion: main.o input.o game.o graphicalGame.o $(BINARIES)/libwordsalad.a + $(CC) $(CFLAGS) -o wordsalad_myversion main.o input.o game.o graphicalGame.o $(BINARIES)/libwordsalad.a $(BINARIES)/libraylib.a $(LDFLAGS)