Added code to initial commit
This commit is contained in:
parent
c9252230b7
commit
c8f6e2a6c3
5 changed files with 122 additions and 1 deletions
12
Makefile
Normal file
12
Makefile
Normal 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
|
||||
|
||||
Reference in a new issue