pam_panic/Makefile

33 lines
1.0 KiB
Makefile
Raw Normal View History

2018-03-27 01:32:29 +00:00
POSSIBLE_PAMDIRS = /lib/x86_64-linux-gnu/security /lib/security
PAMDIR = $(shell make detect_pamdir)
2018-03-28 02:51:23 +00:00
MANDIR = /usr/share/man
2018-03-27 01:32:29 +00:00
all:
@which reboot >/dev/null
@which poweroff >/dev/null
@which cryptsetup >/dev/null
mkdir -p build obj
2018-03-29 11:44:17 +00:00
make -C src
2018-03-27 01:32:29 +00:00
@printf "Done!\n"
clean:
rm build/pam_panic.so
rm obj/pam_panic.o
rmdir build obj
@printf "Done!\n"
detect_pamdir:
@for d in $(POSSIBLE_PAMDIRS); do if [ ! -d $${d} ]; then continue; else printf "$${d}\n"; fi; done
uninstall:
PAMDIR=$(PAMDIR); rm $${PAMDIR}/pam_panic.so
rm /usr/share/man/*/pam_panic.8.gz
@printf "Done!\n"
install:
PAMDIR=$(PAMDIR); if [ -z $${PAMDIR} ]; then printf "Error: PAM's shared object directory was not detected. If you know where it is, please add to POSSIBLE_PAMDIRS and make a pull request.\n"&& exit 1; else cp build/pam_panic.so $${PAMDIR}/pam_panic.so; fi
2018-03-28 02:51:23 +00:00
if [ ! -d $(MANDIR) ]; then printf "Error: Where is the manpage directory?\n" && exit 1; else make install -C man -e "MANDIR = $(MANDIR)"; fi
2018-03-27 01:32:29 +00:00
@printf "Done!\n"
2018-03-29 02:55:09 +00:00
test:
@printf "We only can test it in production.\n"