Compare commits

...

2 Commits

Author SHA1 Message Date
LukVal54
2b95854d23 verbessern_vom_makefile_wordsalad_initial 2025-10-25 15:27:10 +02:00
LukVal54
9ec5c70a0c test. Erster upload 2025-10-17 09:30:24 +02:00
3 changed files with 9 additions and 3 deletions

View File

@ -1,9 +1,9 @@
CC = gcc
CFLAGS = -g -Wall -I$(raylibfolder)
CFLAGS = -g -Wall
LDFLAGS = -lGL -lX11 -lm
BINARIES = ./linux
raylib_folder = ./raylib
raylibfolder = ./raylib
unityfolder = ./unity
# --------------------------
@ -28,7 +28,7 @@ game.o: game.c
$(CC) $(CFLAGS) -c game.c
graphicalGame.o: graphicalGame.c
$(CC) $(CFLAGS) -c graphicalGame.c
$(CC) $(CFLAGS) -I$(raylibfolder) -c graphicalGame.c
# --------------------------
# Unit Tests

BIN
Start_Linux/wordsalad_initial Executable file

Binary file not shown.

6
test.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main()
{
printf("Hoho\n");
return 0;
}