bzr branch
http://bzr.recompile.se/loggerhead/mandos/trunk
2
by Björn Påhlsson
Working client and server and password system |
1 |
CXXFLAGS=-Wall -W -g |
1
by Björn Påhlsson
First working version with: IPv6, GnuTLS, X.509 certificates, DN |
2 |
LDFLAGS=-lgnutls |
3 |
||
4 |
all: client server |
|
5 |
||
6 |
clean: |
|
7
by Teddy Hogeborn
* Makefile (client_debug): New. |
7 |
rm -f server client client_debug |
8 |
||
9 |
client_debug: client |
|
10 |
mv -f client client.tmp |
|
8
by Teddy Hogeborn
* Makefile (client_debug): Bug fix; add quotes and / to CERT_ROOT. |
11 |
$(MAKE) client CXXFLAGS="$(CXXFLAGS) -DDEBUG -DCERT_ROOT=\\\"./\\\"" |
7
by Teddy Hogeborn
* Makefile (client_debug): New. |
12 |
mv client client_debug |
13 |
mv client.tmp client |