chkusr/Makefile

17 lines
325 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/
cp ./checkpw.1 /usr/share/man/man1/
gzip /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