From d314d0cf4b92e1dd9c1f761498b06160dcf5e104 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Sat, 8 Apr 2023 20:12:35 +0200 Subject: Initial commit. An initial working implementation of the password generating algorithm of lesspass. Lacks any sort of documentation or usage info and simply prints the generated password on stdout. * lpass.c: Initial implementation of lesspass * Makefile: A just works version --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b6fd30e --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CC = gcc +CFLAGS = -O2 -Wall + +lpass: lpass.c + $(CC) $(CFLAGS) -lcrypto -o lpass lpass.c -- cgit v1.2.3