Files
aee/makefile
2016-02-18 19:25:04 +01:00

8 lines
131 B
Makefile
Executable File

TARGET=aee
all:
g++ -I/usr/include/SDL2 *.cpp -w -lSDL2 -lGL -lSDL2_image -lSDL2_mixer -o $(TARGET)
clean:
rm -rf ./$(TARGET)