updated files for 1.3-beta release
[libradsec.git] / Makefile
1 CFLAGS = -g -Wall -pedantic -pthread -DRADPROT_UDP -DRADPROT_TLS
2 # -DRADPROT_TCP -DRADPROT_DTLS
3 LDFLAGS = -lssl
4 OBJ = util.o debug.o list.o hash.o gconfig.o tlv11.o hostport.o radmsg.o udp.o tcp.o tls.o dtls.o tlscommon.o radsecproxy.o
5
6 all: radsecproxy
7
8 radsecproxy: $(OBJ)
9         $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy
10
11 catgconf: util.o debug.o gconfig.o catgconf.o
12         $(CC) $(CFLAGS) util.o debug.o gconfig.o catgconf.o -o catgconf
13
14 clean:
15         rm -f $(OBJ) catgconf.o radsecproxy catgconf
16
17 man:
18         docbook2man.pl --to-stdout radsecproxy.conf.5.xml > radsecproxy.conf.5
19
20 html:
21         openjade -E10000 -t sgml-raw -d /usr/share/sgml/docbook/dsssl-stylesheets-1.79/html/docbook.dsl -o radsecproxy.conf.5.html radsecproxy.conf.5.xml