aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-04 14:01:16 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-04 14:01:21 +1200
commit8bc38c441ce265e066d5ebad56fa5cb1f4718c7c (patch)
tree17b2751d7e89773204a79a11459c91fc5aeaaba3 /Makefile
parentInline digest assignment (diff)
downloadcheckem-8bc38c441ce265e066d5ebad56fa5cb1f4718c7c.tar.gz
checkem-8bc38c441ce265e066d5ebad56fa5cb1f4718c7c.zip
Add a Makefile with an `install` target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4ec8b20
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+.POSIX:
+.SUFFIXES:
+.PHONY: all install clean
+PREFIX = /usr/local
+all:
+install:
+ mkdir -p -- $(PREFIX)/bin
+ cp -p -- checkem $(PREFIX)/bin
+clean: