Added code to initial commit

This commit is contained in:
Johannes Findeisen 2024-09-25 08:41:49 +02:00
commit c8f6e2a6c3
5 changed files with 122 additions and 1 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
all:
$(CC) -Wall -o checkpwrule checkpwrule.c
clean:
rm -f ./checkpwrule
install:
cp ./checkpwrule /usr/bin/
uninstall:
rm -f /usr/bin/checkpwrule