summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNathan Lasseter <nathan.je.lasseter@googlemail.com>2012-06-05 21:07:23 +0100
committerNathan Lasseter <nathan.je.lasseter@googlemail.com>2012-06-05 21:07:23 +0100
commitbce6e5dfbeff23d6701b6fc4c159cefcfb0006ea (patch)
tree420ce23f56417c944f802c4fc266267bf3ec05dd /Makefile
parenta969d8f041c54314d0f311df67919341c58038b5 (diff)
Changed system() to rename() and moved temp file to local dir
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 72594d9..677ba6a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CFLAGS=-Wall -Wextra -O3
+CFLAGS=-Wall -Wextra
encrypt: encrypt.c
gcc ${CFLAGS} ${EFLAGS} -o $@ $^
@@ -7,7 +7,7 @@ install:
cp encrypt /usr/local/bin/encrypt
uninstall:
- rm /usr/local/bin/sc-encrypt
+ rm /usr/local/bin/encrypt
clean:
rm encrypt