diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,4 +3,7 @@ | |||
3 | all: JnR | 3 | all: JnR |
4 | 4 | ||
5 | JnR: JnR.cpp | 5 | JnR: JnR.cpp |
6 | g++ JnR.cpp -O2 -Wall -lSDL -o JnR | 6 | g++ JnR.cpp -O2 -Wall -lSDL -std=c++11 -lSDL_ttf -o JnR |
7 | |||
8 | clean: | ||
9 | rm -f JnR | ||