summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2020-10-12 19:11:16 -0600
committerAaron Ball <nullspoon@oper.io>2020-10-12 19:11:16 -0600
commitc6a6581996b2367056c0782f3b5e42bd691d8f53 (patch)
tree9076ad3ee4db6c365d5f5f14131979f96228b640 /Makefile
downloadkcpasswd-c6a6581996b2367056c0782f3b5e42bd691d8f53.tar.gz
kcpasswd-c6a6581996b2367056c0782f3b5e42bd691d8f53.tar.xz
Initial commitHEADmaster
This can encrypt the given password, passed as the first argument. The encrypted value is written to stdout, so to use it it must be redirected to the intended path. If the first argument is a path to a file, the file will be read and decrypted to stdout.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0d33524
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
+CCOPTS = --std=c99 -Wall -Werror -O2
+
+all:
+ cc $(CCOPTS) -o kcpasswd main.c

Generated by cgit