summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commita4dedade67c1956a145cb566c9130f9482f7db09 (patch)
treea15cf7072fab8a0cbc78b98ac6b351121a63acc4 /Makefile
downloadgame-a4dedade67c1956a145cb566c9130f9482f7db09.tar
game-a4dedade67c1956a145cb566c9130f9482f7db09.tar.gz
game-a4dedade67c1956a145cb566c9130f9482f7db09.tar.bz2
game-a4dedade67c1956a145cb566c9130f9482f7db09.tar.xz
game-a4dedade67c1956a145cb566c9130f9482f7db09.zip
init
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4bd9def
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+BINDIR=/usr/local/bin
+BIN=game
+
+all:
+	cc -O2 -Wall -pthread ${BIN}.c -o ${BIN}
+install:
+	mkdir -p ${BINDIR}
+	cp ${BIN} ${BINDIR}/
+clean:
+	rm -f ${BIN}