File: Makefile.am

package info (click to toggle)
squid3 3.4.8-6
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 31,084 kB
  • sloc: cpp: 165,325; ansic: 21,998; sh: 12,166; makefile: 5,964; perl: 2,153; sql: 322; awk: 118
file content (103 lines) | stat: -rw-r--r-- 1,868 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
include $(top_srcdir)/src/Common.am

DIST_SUBDIRS = ntlmauth profiler rfcnb smblib libTrie
SUBDIRS=
EXTRA_DIST=

if USE_ESI
SUBDIRS += libTrie
endif
if ENABLE_XPROF_STATS
SUBDIRS += profiler
endif

install: all
install-strip: all

noinst_LTLIBRARIES = \
	libmiscencoding.la \
	libmisccontainers.la \
	libmiscutil.la

#
# Some libraries are only available on Windows
# and others are unable to be built.
#
if ENABLE_WIN32SPECIFIC
noinst_LTLIBRARIES += libsspwin32.la
libsspwin32_la_SOURCES = sspwin32.cc
else
SUBDIRS += rfcnb smblib
EXTRA_DIST += sspwin32.cc
endif
if ENABLE_AUTH_NTLM
SUBDIRS += ntlmauth
endif

#
# dirent.c, encrypt.c and getopt.c are needed for native Windows support.
#
EXTRA_libmiscutil_la_SOURCES = \
	dirent.c \
	encrypt.c \
	getopt.c

libmiscencoding_la_SOURCES = \
	base64.c \
	charset.c \
	html_quote.c \
	md5.c \
	rfc1738.c \
	rfc2617.c \
	uudecode.c

libmisccontainers_la_SOURCES = \
	hash.cc

libmiscutil_la_SOURCES = \
	malloc_trace.cc \
	MemPool.cc \
	MemPoolChunked.cc \
	MemPoolMalloc.cc \
	getfullhostname.c \
	heap.c \
	iso3307.c \
	radix.c \
	rfc1035.c \
	rfc1123.c \
	rfc2671.c \
	rfc3596.c \
	$(SNPRINTFSOURCE) \
	Splay.cc \
	stub_memaccount.c \
	util.c \
	xusleep.c

TESTS += tests/testAll

check_PROGRAMS += tests/testAll

tests_testAll_SOURCES= \
	tests/testRFC1035.h \
	tests/testRFC1035.cc \
	tests/testRFC1738.h \
	tests/testRFC1738.cc \
	tests/testMain.cc

tests_testAll_LDADD= \
	$(SQUID_CPPUNIT_LA) $(SQUID_CPPUNIT_LIBS) \
	$(top_builddir)/lib/libmiscencoding.la \
	$(top_builddir)/lib/libmiscutil.la \
	$(COMPAT_LIB)

tests_testAll_LDFLAGS = $(LIBADD_DL)


## Special Universal .h dependency test script
## aborts if error encountered
testHeaders: $(top_srcdir)/include/*.h
	$(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" $^ || exit 1

TESTS += testHeaders
CLEANFILES += testHeaders
.PHONY: testHeaders