From 5b47609325b287b299efa2afd9c3adb079d13821 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 17 Oct 2025 14:34:00 +0200 Subject: [PATCH] =?UTF-8?q?wordsalad=5Fmyversion=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Start_Windows/makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Start_Windows/makefile b/Start_Windows/makefile index 146a8c6..6ea91bd 100644 --- a/Start_Windows/makefile +++ b/Start_Windows/makefile @@ -1,11 +1,18 @@ CC = gcc -CFLAGS = -g -Wall -I$(raylibfolder) +CFLAGS = -g -Wall -I$(raylib_folder) LDFLAGS = -lopengl32 -lgdi32 -lwinmm BINARIES = ./windows raylib_folder = ./raylib unityfolder = ./unity +# -------------------------- +# eigenes Spiel bauen +# -------------------------- +wordsalad_myversion: main.o $(BINARIES)/libwordsalad.a $(BINARIES)/libraylib.a + $(CC) -o wordsalad_myversion main.o $(BINARIES)/libwordsalad.a $(BINARIES)/libraylib.a $(LDFLAGS) + + # -------------------------- # initiales Spiel bauen # --------------------------