From b6480d1f1071e7736638249a10942fab262fc0c4 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Tue, 29 Sep 2020 10:03:35 +0200 Subject: Drop makefile build support. Add basic cmake build instructions. Add a README file. Some cosmetics. Signed-off-by: gregory guy (cherry picked from commit 6851937dc142ee360fa0c84be439a41f01c6b45d) --- src/Makefile | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/Makefile (limited to 'src') diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 4addb1c..0000000 --- a/src/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -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 -I/usr/include/tqt3 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 -ltqt -lpam -lcrypt -ltqt-mt -lstdc++ - -clean: - rm -f ckpasswd.o xmalloc.o messages.o ckpasswd -- cgit v1.2.3