-
Notifications
You must be signed in to change notification settings - Fork 26
/
Makefile.am
114 lines (101 loc) · 3.38 KB
/
Makefile.am
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
104
105
106
107
108
109
110
111
112
113
114
ACLOCAL_AMFLAGS = -I m4
AM_LDFLAGS = @COVERAGE_LDFLAGS@
AM_CPPFLAGS = -I@abs_srcdir@/prime_server
AM_CXXFLAGS = -I@abs_srcdir@/prime_server
LIBTOOL_DEPS = @LIBTOOL_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status libtool
# things for versioning
pkgconfig_DATA = libprime_server.pc
EXTRA_DIST = version.sh
# conditional test coverage
if ENABLE_COVERAGE
.PHONY: clean-coverage
clean-coverage:
-find -name '*.gcda' -exec rm -rf {} \;
-$(LCOV) --directory $(top_builddir) -z
-rm -rf coverage.info coverage/
.PHONY: coverage-report
coverage-report: clean-coverage
-$(MAKE) $(AM_MAKEFLAGS) -k check
$(MAKE) $(AM_MAKEFLAGS) coverage/index.html
coverage.info:
$(LCOV) --directory $(top_builddir) --base-directory $(top_builddir) --no-external --capture --output-file $@ --no-checksum --compat-libtool
coverage/index.html: coverage.info
$(GENHTML) --prefix $(top_builddir) --output-directory $(@D) --title "Test Coverage" --legend --show-details $<
.PHONY: clean-gcno
clean-gcno:
-find -name '*.gcno' -exec rm -rf {} \;
clean-local: clean-coverage clean-gcno
endif
# lib prime_server compilation etc
lib_LTLIBRARIES = libprime_server.la
nobase_include_HEADERS = \
prime_server/prime_server.hpp \
prime_server/zmq_helpers.hpp \
prime_server/netstring_protocol.hpp \
prime_server/http_protocol.hpp \
prime_server/http_util.hpp
libprime_server_la_SOURCES = \
src/logging/logging.hpp \
src/prime_helpers.hpp \
src/prime_server.cpp \
src/zmq_helpers.cpp \
src/netstring_protocol.cpp \
src/http_util.cpp \
src/http_protocol.cpp
libprime_server_la_CPPFLAGS = $(DEPS_CFLAGS)
libprime_server_la_LIBADD = $(DEPS_LIBS)
#distributed executables
bin_PROGRAMS = \
prime_serverd \
prime_httpd \
prime_proxyd \
prime_workerd \
prime_echod \
prime_filed
prime_serverd_SOURCES = \
src/prime_serverd.cpp
prime_serverd_CPPFLAGS = $(DEPS_CFLAGS)
prime_serverd_LDADD = $(DEPS_LIBS) libprime_server.la
prime_httpd_SOURCES = \
src/prime_httpd.cpp
prime_httpd_CPPFLAGS = $(DEPS_CFLAGS)
prime_httpd_LDADD = $(DEPS_LIBS) libprime_server.la
prime_proxyd_SOURCES = \
src/prime_proxyd.cpp
prime_proxyd_CPPFLAGS = $(DEPS_CFLAGS)
prime_proxyd_LDADD = $(DEPS_LIBS) libprime_server.la
prime_workerd_SOURCES = \
src/prime_workerd.cpp
prime_workerd_CPPFLAGS = $(DEPS_CFLAGS)
prime_workerd_LDADD = $(DEPS_LIBS) libprime_server.la
prime_echod_SOURCES = \
src/prime_echod.cpp
prime_echod_CPPFLAGS = $(DEPS_CFLAGS)
prime_echod_LDADD = $(DEPS_LIBS) libprime_server.la
prime_filed_SOURCES = \
src/prime_filed.cpp
prime_filed_CPPFLAGS = $(DEPS_CFLAGS)
prime_filed_LDADD = $(DEPS_LIBS) libprime_server.la
# tests
check_PROGRAMS = test/zmq test/netstring test/http test/shaping test/interrupt
test_zmq_SOURCES = test/zmq.cpp
test_zmq_CPPFLAGS = $(DEPS_CFLAGS)
test_zmq_LDADD = $(DEPS_LIBS) libprime_server.la
test_netstring_SOURCES = test/netstring.cpp
test_netstring_CPPFLAGS = $(DEPS_CFLAGS)
test_netstring_LDADD = $(DEPS_LIBS) libprime_server.la
test_http_SOURCES = test/http.cpp
test_http_CPPFLAGS = $(DEPS_CFLAGS)
test_http_LDADD = $(DEPS_LIBS) libprime_server.la
test_shaping_SOURCES = test/shaping.cpp
test_shaping_CPPFLAGS = $(DEPS_CFLAGS)
test_shaping_LDADD = $(DEPS_LIBS) libprime_server.la
test_interrupt_SOURCES = test/interrupt.cpp
test_interrupt_CPPFLAGS = $(DEPS_CFLAGS)
test_interrupt_LDADD = $(DEPS_LIBS) libprime_server.la
TESTS = $(check_PROGRAMS)
TEST_EXTENSIONS = .sh
SH_LOG_COMPILER = sh
test: check