You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smartcardauth/src/Makefile

26 lines
603 B

all: ckpasswd.o xmalloc.o messages.o ckpass.o ckpasswd smartauthmon
ckpass.o: ckpass.c
gcc ckpass.c -c
ckpasswd.o: ckpasswd.c
gcc ckpasswd.c -c
xmalloc.o: xmalloc.c
gcc xmalloc.c -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
smartauthmon: smartauthmon.o ckpass.o
gcc smartauthmon.o ckpass.o xmalloc.o messages.o -o smartauthmon -lqt-mt -ltqt -lpam -lcrypt
clean:
rm -f ckpasswd.o xmalloc.o messages.o ckpasswd