commit project files

This commit is contained in:
2024-11-26 15:46:22 +01:00
parent 91c3fa4e51
commit 8a9d42c793
13 changed files with 5575 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
CC = "C:\\msys64\\mingw64\\bin\\g++.exe"
CFLAGS = -I.
DEPS = -lopengl32 -lglu32 -lgdi32 -l:glew32.lib
LINK = -L. -DGLEW_STATIC
OUTPUT = output.exe
default:
$(CC) -g *.cpp $(CFLAGS) $(DEPS) $(LINK) -static -static-libgcc -fno-keep-inline-dllexport -o $(OUTPUT)
run: default
$(OUTPUT)
clean:
rm $(OUTPUT)