diff options
author | Nicholas Tay <nick@windblume.net> | 2022-01-11 21:44:18 +1100 |
---|---|---|
committer | Nicholas Tay <nick@windblume.net> | 2022-01-11 21:45:46 +1100 |
commit | 887ea0ad480c92679c71e3f88015fffe9c897ac2 (patch) | |
tree | f89fb6c322f497f6594a0283458ba2ccfc135445 /README.md | |
parent | f355ac910e2ce9dc9497a1a59fcbde14205e0621 (diff) | |
download | passgen-887ea0ad480c92679c71e3f88015fffe9c897ac2.tar.gz passgen-887ea0ad480c92679c71e3f88015fffe9c897ac2.tar.bz2 passgen-887ea0ad480c92679c71e3f88015fffe9c897ac2.zip |
Add build instructions for Windows in readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -4,4 +4,18 @@ Just a password generator that makes [passwds.ninja](https://passwds.ninja/)-sty Heavily inspired by a generator I used before at work, just that this time in C. (This is my first C project, please be gentle...) -Licence: Zlib +## Compiling + +``` +# *nix / macOS / mingw (on Windows) +$ make + +# Windows, in Developer CMD +$ cl /std:c11 passgen.c /link Advapi32.lib +``` + +## Licence + +Zlib + +See root of repo for full text. |