chkusr/Makefile

12 lines
154 B
Makefile
Raw Permalink Normal View History

all:
$(CC) -Werror -lpam -lpam_misc -o checkpw checkpw.c
clean:
rm -f ./checkpw
install:
cp ./checkpw /usr/bin/
2024-08-17 23:07:57 +02:00
uninstall:
rm -f /usr/bin/checkpw