From 93c4f16ebc6cc33a81fe78e4849d968c286982e7 Mon Sep 17 00:00:00 2001 From: D2A62006 Date: Thu, 30 Oct 2025 16:47:46 +0100 Subject: [PATCH] make change order --- Start_Linux/makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Start_Linux/makefile b/Start_Linux/makefile index a8d8f59..6c1bde5 100644 --- a/Start_Linux/makefile +++ b/Start_Linux/makefile @@ -6,12 +6,6 @@ BINARIES = ./linux raylibfolder = ./raylib unityfolder = ./unity -# -------------------------- -# initiales Spiel bauen -# -------------------------- -wordsalad_initial: - $(CC) -o wordsalad_initial -L. $(BINARIES)/libwordsalad_complete.a $(BINARIES)/libraylib.a $(LDFLAGS) - # -------------------------- # Normales Spiel bauen # -------------------------- @@ -30,6 +24,13 @@ game.o: game.c graphicalGame.o: graphicalGame.c $(CC) $(CFLAGS) -I$(raylibfolder) -c graphicalGame.c + +# -------------------------- +# initiales Spiel bauen +# -------------------------- +wordsalad_initial: + $(CC) -o wordsalad_initial -L. $(BINARIES)/libwordsalad_complete.a $(BINARIES)/libraylib.a $(LDFLAGS) + # -------------------------- # Unit Tests # -------------------------- @@ -38,6 +39,7 @@ TEST_BIN = runTests test: input.o game.o unit_tests.c $(CC) -I$(unityfolder) -o $(TEST_BIN) input.o game.o unit_tests.c $(BINARIES)/libunity.a + # -------------------------- # Clean # --------------------------