From 8a5f0141a346ad4b94d09313a2ec9a52efa7cf59 Mon Sep 17 00:00:00 2001 From: Jakub Sławiński Date: Tue, 12 Oct 2004 00:07:33 +0200 Subject: v0.5.5 - Added: rsa key generation by afclient - Modified: afclient is now generating keys by default - Fixed: major bug in packet buffering - Added: 'timeout', 'clients' and 'usrpcli' options - Fixed: parsing 'users' option - Modified: module management routines - Added: module support for service's packet filtering - Fixed: few minor bugs in closing connection routines - Added: possibility to use several clients per realm - Modified: there is no need for 'users', 'timeout', 'clients', 'proto', 'usrpcli' and 'climode' options in config file when default values are acceptable --- Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f6064d5..09c9034 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,17 @@ CC=gcc CFLAGS=-pedantic -Wall -O2 programs=afserver afclient -security=server.rsa client.rsa cacert.pem +security=server.rsa cacert.pem +serdepends=afserver.c network.o file.o stats.o buflist.o +clidepends=afclient.c network.o stats.o buflist.o modules.o all: compi $(programs) ok1 secure -afserver: afserver.c network.o file.o stats.o buflist.o - $(CC) $(CFLAGS) -lssl -lz afserver.c network.o file.o stats.o buflist.o -o afserver +afserver: $(serdepends) + $(CC) $(CFLAGS) -lssl -lz $(serdepends) -o afserver -afclient: afclient.c network.o stats.o buflist.o - $(CC) $(CFLAGS) -rdynamic -lssl -lz -ldl afclient.c network.o stats.o buflist.o -o afclient +afclient: $(clidepends) + $(CC) $(CFLAGS) -rdynamic -lssl -lz -ldl $(clidepends) -o afclient %.o: %.c %.h $(CC) $(CFLAGS) -c $*.c -- cgit v1.1