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