diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-08-16 12:27:05 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-08-16 12:27:05 +0000 |
commit | 5b5378e907928e85ab783088038c993a275bb1bf (patch) | |
tree | 669a480a54031e348450a8b80c1441ce0c6ce886 /Makefile | |
parent | 9376ab9c857742c54b1864979e3a2323d9a0bdc3 (diff) |
Initial working version.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..92c44a5 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: pam_file.so pamtest + +pam_file.so: pam_file.c + cc -o pam_file.so -fPIC -shared pam_file.c + +pamtest: pamtest.c + cc -o pamtest pamtest.c -lpam + +clean: + rm -f pamtest pam_file.so |