blob: f73a8f6ecf6f77f19a7f20c9b4303a8b246b5405 (
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 = -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
|