chkusr/Makefile

17 lines
349 B
Makefile
Raw Normal View History

all:
$(CC) -Wall -o checkpw checkpw.c -lpam -lpam_misc
clean:
rm -f ./checkpw
install:
cp ./checkpw /usr/bin/
2025-01-01 09:33:15 +01:00
install -g 0 -o 0 -m 0644 checkpw.1 /usr/share/man/man1/
2025-01-01 09:05:56 +01:00
gzip -f /usr/share/man/man1/checkpw.1
cp ./checkpw.h /usr/include/
2024-08-17 23:07:57 +02:00
uninstall:
rm -f /usr/bin/checkpw
rm -f /usr/share/man/man1/checkpw.1.gz
rm -f /usr/include/checkpw.h
2024-08-17 23:07:57 +02:00