From 887ea0ad480c92679c71e3f88015fffe9c897ac2 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Tue, 11 Jan 2022 21:44:18 +1100 Subject: Add build instructions for Windows in readme --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa29a66..fad1c8d 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit