8 lines
113 B
Makefile
Executable File
8 lines
113 B
Makefile
Executable File
TARGET=aee
|
|
all:
|
|
g++ -I/usr/include/SDL2 *.cpp -w -lSDL2 -lSDL2_mixer -o $(TARGET)
|
|
|
|
clean:
|
|
rm -rf ./$(TARGET)
|
|
|