Some housekeeping...

This commit is contained in:
Johannes Findeisen 2025-01-11 04:42:45 +01:00
commit 6d3e3393b5
6 changed files with 19 additions and 8 deletions

View file

@ -1,10 +1,11 @@
all:
$(CC) -Wall -o ./checkpw ./checkpw.c -lpam -lpam_misc
$(CC) -Wall -o ./checkpw ./checkpw.c -lpam
gzip -fk ./checkpw.1
clean:
rm -f ./checkpw
rm -f ./checkpw.1.gz
rm -f ./test
install:
install -g 0 -o 0 -m 0655 ./checkpw /usr/bin/
@ -16,3 +17,6 @@ uninstall:
rm -f /usr/include/checkpw.h
rm -f /usr/share/man/man1/checkpw.1.gz
test:
$(CC) -Wall -DPAM_DEBUG -o test test.c