diff options
author | Samuel Fadel <samuel@nihil.ws> | 2023-04-08 20:12:35 +0200 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2023-04-08 20:12:35 +0200 |
commit | d314d0cf4b92e1dd9c1f761498b06160dcf5e104 (patch) | |
tree | 68dcb1f3d236a7ec174862b0caf6e2e90a29b6cc /Makefile |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
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 |