diff options
author | Jakub Sławiński | 2004-10-12 00:07:33 +0200 |
---|---|---|
committer | Joshua Judson Rosen | 2014-07-17 21:14:58 +0200 |
commit | 8a5f0141a346ad4b94d09313a2ec9a52efa7cf59 (patch) | |
tree | 70af82a7af209cca2ecd6fb44388cf25dd9c785d /Makefile | |
parent | v0.5.4 (diff) | |
download | apf-8a5f0141a346ad4b94d09313a2ec9a52efa7cf59.tar.gz |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -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 |