forked from dlundquist/sniproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
36 lines (33 loc) · 1.06 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
AM_CPPFLAGS = $(LIBEV_CFLAGS) $(LIBPCRE_CFLAGS) $(LIBUDNS_CFLAGS)
sbin_PROGRAMS = sniproxy
sniproxy_SOURCES = sniproxy.c \
address.c \
address.h \
backend.c \
backend.h \
binder.c \
binder.h \
buffer.c \
buffer.h \
cfg_parser.c \
cfg_parser.h \
cfg_tokenizer.c \
cfg_tokenizer.h \
config.c \
config.h \
connection.c \
connection.h \
http.c \
http.h \
listener.c \
listener.h \
logger.c \
logger.h \
protocol.h \
resolv.c \
resolv.h \
table.c \
table.h \
tls.c \
tls.h
sniproxy_LDADD = $(LIBEV_LIBS) $(LIBPCRE_LIBS) $(LIBUDNS_LIBS)