aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWolfgang Draxinger <code+github@datenwolf.net>2011-06-09 16:56:22 +0200
committerWolfgang Draxinger <code+github@datenwolf.net>2011-06-09 16:56:22 +0200
commitfa10addf169a14085d004603a17022413a7a16a3 (patch)
tree523b74e7e1df38c396d4cd8787ea57e02da86f92 /Makefile
downloadpam_propperpwnam-fa10addf169a14085d004603a17022413a7a16a3.tar.gz
pam_propperpwnam-fa10addf169a14085d004603a17022413a7a16a3.tar.bz2
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..12f2a77
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+pam_propperpwnam.so: pam_propperpwnam.c
+ $(CC) -shared -fPIC -o pam_propperpwnam.so pam_propperpwnam.c -lpam
+
+
+.PHONY: clean
+
+clean:
+ rm *.o *.so
+