aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-04-19 22:48:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-04-19 22:48:07 +1200
commitb14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd (patch)
tree768cde8edab68f5d6333cfb02cada99ee30b0d66 /Makefile
parentInitial commit (diff)
downloadcrypt-b14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd.tar.gz
crypt-b14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd.zip
First commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..01552d2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+LDFLAGS = -lcrypt
+PREFIX := /usr/local
+
+all : crypt
+
+clean :
+ rm -f crypt
+
+install : crypt
+ mkdir -p "$(PREFIX)"/bin "$(PREFIX)"/share/man/man1
+ install crypt "$(PREFIX)"/bin
+ install crypt.1 "$(PREFIX)"/share/man/man1
+