forgot to update Makefile.am
[radsecproxy.git] / Makefile.am
1 sbin_PROGRAMS        = radsecproxy
2
3 radsecproxy_SOURCES = radsecproxy.c \
4                       tlscommon.c \
5                       gconfig.c \
6                       util.c \
7                       debug.c \
8                       list.c \
9                       hash.c \
10                       tlv11.c \
11                       radmsg.c \
12                       udp.c \
13                       tcp.c \
14                       tls.c \
15                       dtls.c \
16                       radsecproxy.h \
17                       tlscommon.h \
18                       gconfig.h \
19                       debug.h \
20                       util.h \
21                       list.h \
22                       hash.h \
23                       tlv11.h \
24                       radmsg.h \
25                       udp.h \
26                       tcp.h \
27                       tls.h \
28                       dtls.h
29
30 radsecproxy_CFLAGS  = -g -Wall -pedantic -pthread -DRADPROT_UDP -DRADPROT_TCP -DRADPROT_TLS -DRADPROT_DTLS @SSL_CFLAGS@ @TARGET_CFLAGS@
31 radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@
32 radsecproxy_LDADD   = @SSL_LIBS@
33
34 dist_sysconf_DATA   = $(srcdir)/radsecproxy.conf-example
35 dist_man_MANS       = radsecproxy.1 radsecproxy.conf.5