File: Makefile.am

package info (click to toggle)
bitz-server 2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,652 kB
  • sloc: cpp: 11,028; python: 189; makefile: 137; sh: 81
file content (24 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
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