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