2024-08-10 18:47:15 +02:00
|
|
|
all:
|
2025-06-04 18:43:26 +02:00
|
|
|
$(CC) -Wall -o ./chkpwd ./chkpwd.c -lpam
|
|
|
|
|
gzip -fk ./chkpwd.1
|
2024-08-10 18:47:15 +02:00
|
|
|
|
|
|
|
|
clean:
|
2025-06-04 18:43:26 +02:00
|
|
|
rm -f ./chkpwd
|
|
|
|
|
rm -f ./chkpwd.1.gz
|
2025-01-11 04:42:45 +01:00
|
|
|
rm -f ./test
|
2024-08-10 18:47:15 +02:00
|
|
|
|
|
|
|
|
install:
|
2025-06-04 18:43:26 +02:00
|
|
|
install -g 0 -o 0 -m 0655 ./chkpwd /usr/bin/
|
|
|
|
|
install -g 0 -o 0 -m 0644 ./chkpwd.h /usr/include/
|
|
|
|
|
install -g 0 -o 0 -m 0644 ./chkpwd.1.gz /usr/share/man/man1/
|
2024-08-10 18:47:15 +02:00
|
|
|
|
2024-08-17 23:07:57 +02:00
|
|
|
uninstall:
|
2025-06-04 18:43:26 +02:00
|
|
|
rm -f /usr/bin/chkpwd
|
|
|
|
|
rm -f /usr/include/chkpwd.h
|
|
|
|
|
rm -f /usr/share/man/man1/chkpwd.1.gz
|
2024-08-17 23:07:57 +02:00
|
|
|
|
2025-01-11 04:42:45 +01:00
|
|
|
test:
|
|
|
|
|
$(CC) -Wall -DPAM_DEBUG -o test test.c
|
|
|
|
|
|