aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Draxinger <code+github@datenwolf.net>2011-09-12 14:25:48 +0200
committerWolfgang Draxinger <code+github@datenwolf.net>2011-09-12 14:25:48 +0200
commitc2a3a5271945944eb45700b490614d6507c18ab6 (patch)
treed36c946f9a86900e60a8626c8fc1ccf13ba7e023
parentb7b3203f68bae070bf50a0e30e93a6f1e9e4c29a (diff)
downloadpam_propperpwnam-c2a3a5271945944eb45700b490614d6507c18ab6.tar.gz
pam_propperpwnam-c2a3a5271945944eb45700b490614d6507c18ab6.tar.bz2
Makefile install target
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 12f2a77..e3c73a0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,11 @@
pam_propperpwnam.so: pam_propperpwnam.c
$(CC) -shared -fPIC -o pam_propperpwnam.so pam_propperpwnam.c -lpam
-
.PHONY: clean
clean:
rm *.o *.so
+install: pam_propperpwnam.so
+ install -o root -g root -m 644 pam_propperpwnam.so /lib/security/
+