blob: 02d8bb433442e77e75e56a79a050c2fd7933f434 (
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
libicapincludedir = $(includedir)/icap
lib_LTLIBRARIES = libicap.la
libicap_la_LIBADD = $(top_builddir)/lib/socket/libsocket.la
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
|