chkusr/Makefile

14 lines
212 B
Makefile
Raw Permalink Normal View History

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