From 3a3ed0cdcd5349969f3aee59a63cabd3439d7292 Mon Sep 17 00:00:00 2001 From: tpearson Date: Tue, 20 Sep 2011 07:18:56 +0000 Subject: Add an initial C++ port of the smartauthmon script to smartcardauth This still relies heavily on system calls, but is already faster and has the potential to be more secure git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/smartcardauth@1254556 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index e71a413..cd28008 100644 --- a/src/Makefile +++ b/src/Makefile @@ -9,8 +9,14 @@ xmalloc.o: xmalloc.c messages.o: messages.c gcc messages.c -c +smartauthmon.o: smartauthmon.cpp + g++ -I/usr/include/tqt -I/usr/include/qt3 smartauthmon.cpp -c + ckpasswd: ckpasswd.o gcc ckpasswd.o xmalloc.o messages.o -o ckpasswd -lpam -lcrypt +ckpasswd: smartauthmon.o + gcc smartauthmon.o -o smartauthmon -ltqt + clean: rm -f ckpasswd.o xmalloc.o messages.o ckpasswd -- cgit v1.2.1