Simple password checker built with C, flex and bison.
Just type in the terminal:
git clone https://github.com/sGaps/password-checker.git
As easy as write:
make
or
make all
if you want to generate the executable and all unit tests.
Use this command for that purpose:
make package
It will create a new folder called package
which will contain a zip file with the same name (package.zip
).
Note: the zip file will only cointain: the
makefile
and the subdirectoriessrc/
,src-bin/
andtests/*
.
change the name of the zip-file by using:
make package ZIPFILE=compressed
And it will create the file package/compressed.zip
Clean the directory by typing:
make clean