Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / src / Makefile.am
1 ## This file is part of Metaproxy
2 ## Copyright (C) Index Data
3 ## See the file LICENSE for details.
4
5 MAINTAINERCLEANFILES = Makefile.in config.in config.hpp
6
7 DISTCLEANFILES = metaproxy-config
8
9 AM_CXXFLAGS = $(BOOST_CPPFLAGS)
10
11 AM_CPPFLAGS = -I$(top_srcdir)/include $(USEMARCONINC)
12
13 bin_SCRIPTS = metaproxy-config
14
15 filter_src = \
16         filter_auth_simple.cpp filter_auth_simple.hpp \
17         filter_backend_test.cpp filter_backend_test.hpp \
18         filter_bounce.cpp filter_bounce.hpp \
19         filter_cgi.cpp filter_cgi.hpp \
20         filter_cql_rpn.cpp filter_cql_rpn.hpp \
21         filter_frontend_net.cpp filter_frontend_net.hpp \
22         filter_http_client.cpp filter_http_client.hpp \
23         filter_http_file.cpp filter_http_file.hpp \
24         filter_http_rewrite1.cpp filter_http_rewrite1.hpp \
25         filter_http_rewrite.cpp filter_http_rewrite.hpp \
26         filter_limit.cpp filter_limit.hpp \
27         filter_load_balance.cpp filter_load_balance.hpp \
28         filter_log.cpp filter_log.hpp \
29         filter_multi.cpp filter_multi.hpp \
30         filter_query_rewrite.cpp filter_query_rewrite.hpp \
31         filter_present_chunk.cpp filter_present_chunk.hpp \
32         filter_record_transform.cpp filter_record_transform.hpp \
33         filter_session_shared.cpp filter_session_shared.hpp \
34         filter_sd_remove.cpp filter_sd_remove.hpp \
35         filter_sort.cpp filter_sort.hpp \
36         filter_sru_to_z3950.cpp  filter_sru_to_z3950.hpp \
37         filter_template.cpp filter_template.hpp \
38         filter_virt_db.cpp filter_virt_db.hpp \
39         filter_z3950_client.cpp filter_z3950_client.hpp \
40         filter_zeerex_explain.cpp  filter_zeerex_explain.hpp \
41         filter_zoom.cpp filter_zoom.hpp
42
43 lib_LTLIBRARIES = libmetaproxy.la
44 libmetaproxy_la_LDFLAGS = -version-info 6:0:0 -export-dynamic
45
46 libmetaproxy_la_SOURCES = \
47         $(filter_src) \
48         factory_filter.cpp factory_filter.hpp \
49         factory_static.cpp factory_static.hpp \
50         filter.cpp \
51         gduutil.cpp gduutil.hpp \
52         origin.cpp \
53         package.cpp \
54         pipe.cpp pipe.hpp \
55         plainfile.cpp \
56         session.cpp \
57         sru_util.cpp sru_util.hpp \
58         thread_pool_observer.cpp thread_pool_observer.hpp \
59         torus.cpp torus.hpp \
60         url_recipe.cpp \
61         util.cpp \
62         html_parser.hpp html_parser.cpp \
63         router_chain.cpp \
64         router_flexml.hpp router_flexml.cpp \
65         router_xml.cpp \
66         xmlutil.cpp
67
68 libmetaproxy_la_LIBADD = $(YAZPPLALIB) \
69         $(BOOST_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) \
70         $(BOOST_REGEX_LIB)
71
72 metaproxy_LDADD = libmetaproxy.la $(YAZPPLALIB) \
73         $(BOOST_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) \
74         $(BOOST_REGEX_LIB) $(USEMARCONLALIB)
75
76 tstdl_LDADD = $(metaproxy_LDADD)
77
78 LDADD = $(metaproxy_LDADD) $(BOOST_TEST_LIB)
79 AM_LDFLAGS = -export-dynamic
80
81 bin_PROGRAMS = metaproxy
82 noinst_PROGRAMS = tstdl
83
84 tstdl_SOURCES = tstdl.cpp
85 metaproxy_SOURCES = metaproxy_prog.cpp
86
87 # Rules for dl programs
88 pkglib_LTLIBRARIES = metaproxy_filter_dl.la
89
90 metaproxy_filter_dl_la_SOURCES = filter_dl.cpp
91 metaproxy_filter_dl_la_LDFLAGS = -rpath $(pkglibdir) -module -avoid-version
92 metaproxy_filter_dl_la_LIBADD = libmetaproxy.la
93
94 # Rules for test programs..
95
96 check_PROGRAMS = \
97         test_package1 \
98         test_pipe \
99         test_filter1 test_filter2 \
100         test_session1 test_session2 \
101         test_thread_pool_observer \
102         test_boost_threads \
103         test_filter_auth_simple \
104         test_filter_factory \
105         test_filter_frontend_net \
106         test_filter_log \
107         test_filter_multi \
108         test_filter_query_rewrite \
109         test_filter_z3950_client \
110         test_filter_backend_test \
111         test_filter_bounce \
112         test_filter_record_transform \
113         test_filter_sru_to_z3950 \
114         test_filter_virt_db \
115         test_filter_rewrite \
116         test_ses_map \
117         test_router_flexml \
118         test_html_parser \
119         test_xmlutil
120
121 TESTS=$(check_PROGRAMS)
122
123 test_package1_SOURCES=test_package1.cpp
124 test_pipe_SOURCES=test_pipe.cpp
125 test_filter1_SOURCES=test_filter1.cpp
126 test_filter2_SOURCES=test_filter2.cpp
127 test_session1_SOURCES=test_session1.cpp
128 test_session2_SOURCES=test_session2.cpp
129 test_boost_threads_SOURCES=test_boost_threads.cpp
130 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
131 test_filter_auth_simple_SOURCES = test_filter_auth_simple.cpp
132 test_filter_factory_SOURCES = test_filter_factory.cpp
133 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
134 test_filter_log_SOURCES = test_filter_log.cpp
135 test_filter_multi_SOURCES = test_filter_multi.cpp
136 test_filter_query_rewrite_SOURCES = test_filter_query_rewrite.cpp
137 test_filter_z3950_client_SOURCES = test_filter_z3950_client.cpp
138 test_filter_backend_test_SOURCES = test_filter_backend_test.cpp
139 test_filter_bounce_SOURCES = test_filter_bounce.cpp
140 test_filter_record_transform_SOURCES = test_filter_record_transform.cpp
141 test_filter_sru_to_z3950_SOURCES = test_filter_sru_to_z3950.cpp
142 test_filter_virt_db_SOURCES = test_filter_virt_db.cpp
143 test_ses_map_SOURCES = test_ses_map.cpp
144 test_router_flexml_SOURCES = test_router_flexml.cpp
145 test_xmlutil_SOURCES = test_xmlutil.cpp
146
147 test_html_parser_SOURCES = test_html_parser.cpp
148 test_filter_rewrite_SOURCES = test_filter_rewrite.cpp
149
150 # doxygen target
151 dox:
152         (cd $(top_srcdir) ; make dox)
153
154 showdox:
155         (cd $(top_srcdir) ; make showdox)