chkusr/Makefile

12 lines
154 B
Makefile

all:
$(CC) -Werror -lpam -lpam_misc -o checkpw checkpw.c
clean:
rm -f ./checkpw
install:
cp ./checkpw /usr/bin/
uninstall:
rm -f /usr/bin/checkpw