first commit

This commit is contained in:
2024-10-30 11:26:19 +01:00
commit 9369dc6ebc
4 changed files with 1050 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
CC=gcc
CFLAGS=-I.
DEPS = -lopengl32 -lglu32 -lgdi32
OUTPUT = szescian.exe
default:
$(CC) -g *.c $(DEPS) -static -o $(OUTPUT)
cp /usr/bin/msys-2.0.dll .
run: default
./$(OUTPUT)
clean:
rm $(OUTPUT) msys-2.0.dll