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

23 lines
484 B

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
#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