aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Homer <mwh@mwh.geek.nz>2014-06-20 09:29:08 +1200
committerMichael Homer <mwh@mwh.geek.nz>2014-06-20 09:31:19 +1200
commit1da073923fd749b6db5a9db120603ebd70371c4e (patch)
tree4ca530cdf640efe0be61afaa41daecf5fbfefbd8 /Makefile
parentAdd short options -t and -x (diff)
downloaddragon-1da073923fd749b6db5a9db120603ebd70371c4e.tar.gz
dragon-1da073923fd749b6db5a9db120603ebd70371c4e.tar.bz2
dragon-1da073923fd749b6db5a9db120603ebd70371c4e.zip
Add readme and licence
The readme gives simple usage an installation instructions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cf8bbb1..fea0d36 100644
--- a/Makefile
+++ b/Makefile
@@ -6,4 +6,5 @@ dragon: dragon.c
$(CC) --std=c99 -Wall $(DEFINES) dragon.c -o dragon `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0`
install: dragon
+ mkdir -p $(PREFIX)
cp dragon $(PREFIX)
bgstack15