Files
aee/makefile
2025-06-29 17:12:52 +02:00

11 lines
157 B
Makefile

TARGET=aee
linux:
g++ *.cpp -lSDL3 -lGL -o $(TARGET)
windows:
g++ *.cpp -lmingw32 -lSDL3 -lopengl32 -mwindows -o $(TARGET)
clean:
rm -rf ./$(TARGET)