]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/ecap/Makefile.am
Merged from parent (trunk r11242, circa 3.2.0.5+)
[thirdparty/squid.git] / src / adaptation / ecap / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 noinst_LTLIBRARIES = libxecap.la
5
6 libxecap_la_SOURCES = \
7 Config.h \
8 Config.cc \
9 Host.h \
10 Host.cc \
11 MessageRep.h \
12 MessageRep.cc \
13 ServiceRep.h \
14 ServiceRep.cc \
15 XactionRep.h \
16 XactionRep.cc \
17 \
18 Registry.h
19
20 # add libecap using its pkg-config-produced configuration variables
21 libxecap_la_CPPFLAGS = $(EXTLIBECAP_CFLAGS)
22
23 ## It is tempting to put libxecap_la_LDFLAGS here, but it leads to weird
24 ## linking errors. For example, "make clean all" works, but rebuilding after
25 ## modifying a single source file leads to libtool's "file not found" errors.
26 ## libxecap_la_LDFLAGS = $(EXTLIBECAP_LIBS)