diff options
author | Gregor Kleen <gkleen@praseodym.org> | 2014-12-02 19:19:18 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@praseodym.org> | 2014-12-02 19:19:18 +0000 |
commit | e777b111586e0d049a9e2265f2ff1deec1689c3f (patch) | |
tree | a75732f13e3a1f290760d40677c42c4ec6f5a20e | |
parent | 6f84f40ed345d5e0e224990f03613695851c8b1a (diff) | |
download | SpaceCannon-e777b111586e0d049a9e2265f2ff1deec1689c3f.tar SpaceCannon-e777b111586e0d049a9e2265f2ff1deec1689c3f.tar.gz SpaceCannon-e777b111586e0d049a9e2265f2ff1deec1689c3f.tar.bz2 SpaceCannon-e777b111586e0d049a9e2265f2ff1deec1689c3f.tar.xz SpaceCannon-e777b111586e0d049a9e2265f2ff1deec1689c3f.zip |
Added 'Makefile'
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..812fc56 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,6 @@ | |||
1 | .PHONY: all | ||
2 | |||
3 | all: JnR | ||
4 | |||
5 | JnR: JnR.cpp | ||
6 | g++ JnR.cpp -O2 -Wall -lSDL -std=c++11 -o JnR | ||