summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 201a0512b1caf1962d9f1f58bba3fe447ad1136f (plain)
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
## src/
AUTOMAKE_OPTIONS        = subdir-objects
AM_CPPFLAGS             = -I$(top_srcdir)/lib ${libconfig_CFLAGS} ${log4cpp_CFLAGS}

bitzincludedir          = $(pkgincludedir)
sbin_PROGRAMS           = bitz-server
bitz_server_LDFLAGS     = -ldl -export-dynamic
bitz_server_LDADD       = $(top_builddir)/lib/socket/libsocket.la \
	$(top_builddir)/lib/icap/libicap.la \
	${libconfig_LIBS} ${log4cpp_LIBS}

bitz_server_SOURCES     = main.cpp \
	bitz-server.h bitz-server.cpp \
	bitz/exception.h bitz/exception.cpp \
	bitz/manager_exception.h bitz/manager_exception.cpp \
	bitz/config.h bitz/config.cpp \
	bitz/logger.h bitz/logger.cpp \
	bitz/common.h \
	bitz/util.h bitz/util.cpp \
	bitz/manager.h bitz/manager.cpp \
	bitz/worker.h bitz/worker.cpp \
	bitz/request_handler.h bitz/request_handler.cpp \
	bitz/options_request_handler.h bitz/options_request_handler.cpp \
	bitz/reqmod_request_handler.h bitz/reqmod_request_handler.cpp \
	bitz/respmod_request_handler.h bitz/respmod_request_handler.cpp \
	bitz/modifier.cpp

bitzinclude_HEADERS     = \
	bitz/config.h \
	bitz/logger.h \
	bitz/modifier.h