From dc44785e001a70bc4222bd8084fc4ee7191ef049 Mon Sep 17 00:00:00 2001 From: Charl Botha Date: Mon, 7 Jul 2003 15:09:41 +0000 Subject: Added new contributed Makefile. --- contrib/Makefile.standalone-0.95 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 contrib/Makefile.standalone-0.95 (limited to 'contrib/Makefile.standalone-0.95') diff --git a/contrib/Makefile.standalone-0.95 b/contrib/Makefile.standalone-0.95 new file mode 100644 index 0000000..136f04a --- /dev/null +++ b/contrib/Makefile.standalone-0.95 @@ -0,0 +1,26 @@ +PAM_LIB_DIR = /lib/security +CC = gcc +LD = ld +INSTALL = /usr/bin/install +CFLAGS = -fPIC -O2 -c -g -Wall -Wformat-security +LDFLAGS = -x --shared +PAMLIB = -lpam +CRYPTLIB = -lcrypt + +all: pam_pwdfile.so + +pam_pwdfile.so: pam_pwdfile.o + $(LD) $(LDFLAGS) -o pam_pwdfile.so pam_pwdfile.o $(PAMLIB) $(CRYPTLIB) + +pam_pwdfile.o: pam_pwdfile.c + $(CC) $(CFLAGS) pam_pwdfile.c + +install: pam_pwdfile.so + $(INSTALL) -m 0755 -d $(PAM_LIB_DIR) + $(INSTALL) -m 0755 pam_pwdfile.so $(PAM_LIB_DIR) + +clean: + rm -f pam_pwdfile.o pam_pwdfile.so + +spotless: + rm -f pam_pwdfile.so pam_pwdfile.o *~ core -- cgit v1.2.3