aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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