diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:47:14 +0000 |
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:47:14 +0000 |
| commit | 3eaf4237194e25804f221af93c269d3d97e2809d (patch) | |
| tree | cdedf3fc954b0727b0b34aa9b0b211cc18f854eb /src/Makefile | |
| download | smartcardauth-3eaf4237194e25804f221af93c269d3d97e2809d.tar.gz smartcardauth-3eaf4237194e25804f221af93c269d3d97e2809d.zip | |
Added my SmartCard login/session lock/unlock utility
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/smartcardauth@1097604 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..e71a413 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,16 @@ +all: ckpasswd.o xmalloc.o messages.o ckpasswd + +ckpasswd.o: ckpasswd.c + gcc ckpasswd.c -c + +xmalloc.o: xmalloc.c + gcc xmalloc.c -c + +messages.o: messages.c + gcc messages.c -c + +ckpasswd: ckpasswd.o + gcc ckpasswd.o xmalloc.o messages.o -o ckpasswd -lpam -lcrypt + +clean: + rm -f ckpasswd.o xmalloc.o messages.o ckpasswd |
