Renamed project from checkpw to chkpw. (1.2.0)

This commit is contained in:
Johannes Findeisen 2025-06-01 19:23:47 +02:00
commit 22e4f0790a
7 changed files with 58 additions and 58 deletions

View file

@ -1,21 +1,21 @@
all:
$(CC) -Wall -o ./checkpw ./checkpw.c -lpam
gzip -fk ./checkpw.1
$(CC) -Wall -o ./chkpw ./chkpw.c -lpam
gzip -fk ./chkpw.1
clean:
rm -f ./checkpw
rm -f ./checkpw.1.gz
rm -f ./chkpw
rm -f ./chkpw.1.gz
rm -f ./test
install:
install -g 0 -o 0 -m 0655 ./checkpw /usr/bin/
install -g 0 -o 0 -m 0644 ./checkpw.h /usr/include/
install -g 0 -o 0 -m 0644 ./checkpw.1.gz /usr/share/man/man1/
install -g 0 -o 0 -m 0655 ./chkpw /usr/bin/
install -g 0 -o 0 -m 0644 ./chkpw.h /usr/include/
install -g 0 -o 0 -m 0644 ./chkpw.1.gz /usr/share/man/man1/
uninstall:
rm -f /usr/bin/checkpw
rm -f /usr/include/checkpw.h
rm -f /usr/share/man/man1/checkpw.1.gz
rm -f /usr/bin/chkpw
rm -f /usr/include/chkpw.h
rm -f /usr/share/man/man1/chkpw.1.gz
test:
$(CC) -Wall -DPAM_DEBUG -o test test.c