blob: a5608db699fc07a28d13b2e84466cb3d408cf44a (
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
|
## [icap-library] lib/icap/
AM_CPPFLAGS = -std=c++11 -I$(top_srcdir)/lib ${psocksxx_CFLAGS}
libicapincludedir = $(includedir)/icap
lib_LTLIBRARIES = libicap.la
libicap_la_LIBADD = ${psocksxx_LIBS}
libicap_la_LDFLAGS = -version-info @ICAP_LT_VERSION@ -no-undefined
libicap_la_SOURCES = \
header.cpp \
request_header.cpp \
response_header.cpp \
request.cpp \
response.cpp \
util.cpp
libicapinclude_HEADERS = \
common.h \
header.h \
request_header.h \
response_header.h \
request.h \
response.h \
util.h
|