summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNathan Lasseter <nathan.je.lasseter@googlemail.com>2012-06-05 19:41:29 +0100
committerNathan Lasseter <nathan.je.lasseter@googlemail.com>2012-06-05 19:41:29 +0100
commit3f9415f3c0ba8186cdf86a616f383a880e9d006e (patch)
tree52e255485978052544c6cae72fb4ea29b9dd147f /Makefile
SimpleCrypt 0.1 (copied in for historical reasons)
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..eaa7d67
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-Wall -Wextra
+
+all:
+ make encrypt
+ make decrypt
+
+encrypt: encrypt.c
+ gcc -o $@ $^ ${CFLAGS}
+decrypt: decrypt.c
+ gcc -o $@ $^ ${CFLAGS}