Bump year
[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 AM_LDFLAGS =
13
14 bin_SCRIPTS = metaproxy-config
15
16 # Rules for the library..
17
18 lib_LTLIBRARIES = libmetaproxy.la
19 libmetaproxy_la_LDFLAGS = -version-info 4:0:0 -export-dynamic
20
21 libmetaproxy_la_SOURCES = \
22         factory_filter.cpp factory_filter.hpp \
23         factory_static.cpp factory_static.hpp \
24         filter.cpp \
25         filter_auth_simple.cpp filter_auth_simple.hpp \
26         filter_backend_test.cpp filter_backend_test.hpp \
27         filter_bounce.cpp filter_bounce.hpp \
28         filter_cgi.cpp filter_cgi.hpp \
29         filter_cql_to_rpn.cpp filter_cql_to_rpn.hpp \
30         filter_frontend_net.cpp filter_frontend_net.hpp \
31         filter_http_file.cpp filter_http_file.hpp \
32         filter_limit.cpp filter_limit.hpp \
33         filter_load_balance.cpp filter_load_balance.hpp \
34         filter_log.cpp filter_log.hpp \
35         filter_multi.cpp filter_multi.hpp \
36         filter_query_rewrite.cpp filter_query_rewrite.hpp \
37         filter_record_transform.cpp filter_record_transform.hpp \
38         filter_session_shared.cpp filter_session_shared.hpp \
39         filter_sort.cpp filter_sort.hpp \
40         filter_sru_to_z3950.cpp  filter_sru_to_z3950.hpp \
41         filter_template.cpp filter_template.hpp \
42         filter_virt_db.cpp filter_virt_db.hpp \
43         filter_z3950_client.cpp filter_z3950_client.hpp \
44         filter_zeerex_explain.cpp  filter_zeerex_explain.hpp \
45         filter_zoom.cpp filter_zoom.hpp \
46         gduutil.cpp gduutil.hpp \
47         origin.cpp \
48         package.cpp \
49         pipe.cpp pipe.hpp \
50         plainfile.cpp \
51         router_chain.hpp router_chain.cpp \
52         router_flexml.hpp router_flexml.cpp \
53         session.cpp \
54         sru_util.cpp sru_util.hpp \
55         thread_pool_observer.cpp thread_pool_observer.hpp \
56         torus.cpp torus.hpp \
57         url_recipe.cpp \
58         util.cpp \
59         xmlutil.cpp 
60
61
62 libmetaproxy_la_LIBADD = $(YAZPPLALIB) $(BOOST_LIB) $(BOOST_THREAD_LIB) $(BOOST_REGEX_LIB)
63
64 # Rules for lib
65
66 LDADD = libmetaproxy.la $(YAZPPLALIB) $(BOOST_LIB) $(BOOST_THREAD_LIB) \
67         $(BOOST_REGEX_LIB) $(USEMARCONLALIB)
68
69 bin_PROGRAMS = metaproxy
70 noinst_PROGRAMS = ex_filter_frontend_net ex_router_flexml tstdl
71
72 ex_filter_frontend_net_SOURCES = ex_filter_frontend_net.cpp
73 ex_router_flexml_SOURCES =  ex_router_flexml.cpp
74 tstdl_SOURCES = tstdl.cpp
75 metaproxy_SOURCES = metaproxy_prog.cpp
76
77 # Rules for dl programs
78 pkglib_LTLIBRARIES = metaproxy_filter_dl.la
79
80 metaproxy_filter_dl_la_SOURCES = filter_dl.cpp
81 metaproxy_filter_dl_la_LDFLAGS = -rpath $(pkglibdir) -module -avoid-version
82 metaproxy_filter_dl_la_LIBADD = libmetaproxy.la
83
84 # Rules for test programs..
85
86 check_PROGRAMS = \
87         test_package1 \
88         test_pipe \
89         test_filter1 test_filter2 \
90         test_session1 test_session2 \
91         test_thread_pool_observer \
92         test_boost_threads \
93         test_filter_auth_simple \
94         test_filter_factory \
95         test_filter_frontend_net \
96         test_filter_log \
97         test_filter_multi \
98         test_filter_query_rewrite \
99         test_filter_z3950_client \
100         test_filter_backend_test \
101         test_filter_bounce \
102         test_filter_record_transform \
103         test_filter_sru_to_z3950 \
104         test_filter_virt_db \
105         test_ses_map \
106         test_router_flexml \
107         test_xmlutil
108
109 TESTS=$(check_PROGRAMS)
110
111 test_package1_SOURCES=test_package1.cpp
112 test_pipe_SOURCES=test_pipe.cpp
113 test_filter1_SOURCES=test_filter1.cpp
114 test_filter2_SOURCES=test_filter2.cpp
115 test_session1_SOURCES=test_session1.cpp
116 test_session2_SOURCES=test_session2.cpp
117 test_boost_threads_SOURCES=test_boost_threads.cpp
118 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
119 test_filter_auth_simple_SOURCES = test_filter_auth_simple.cpp
120 test_filter_factory_SOURCES = test_filter_factory.cpp
121 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
122 test_filter_log_SOURCES = test_filter_log.cpp
123 test_filter_multi_SOURCES = test_filter_multi.cpp
124 test_filter_query_rewrite_SOURCES = test_filter_query_rewrite.cpp
125 test_filter_z3950_client_SOURCES = test_filter_z3950_client.cpp
126 test_filter_backend_test_SOURCES = test_filter_backend_test.cpp
127 test_filter_bounce_SOURCES = test_filter_bounce.cpp
128 test_filter_record_transform_SOURCES = test_filter_record_transform.cpp
129 test_filter_sru_to_z3950_SOURCES = test_filter_sru_to_z3950.cpp
130 test_filter_virt_db_SOURCES = test_filter_virt_db.cpp
131 test_ses_map_SOURCES = test_ses_map.cpp
132 test_router_flexml_SOURCES = test_router_flexml.cpp
133 test_xmlutil_SOURCES = test_xmlutil.cpp
134
135 TESTLDADD = $(LDADD) $(BOOST_TEST_LIB)
136
137 test_package1_LDADD = $(TESTLDADD)
138 test_pipe_LDADD = $(TESTLDADD)
139 test_filter1_LDADD = $(TESTLDADD)
140 test_filter2_LDADD = $(TESTLDADD)
141 test_session1_LDADD = $(TESTLDADD)
142 test_session2_LDADD = $(TESTLDADD)
143 test_boost_threads_LDADD = $(TESTLDADD)
144 test_filter_auth_simple_LDADD = $(TESTLDADD)
145 test_filter_factory_LDADD = $(TESTLDADD)
146 test_filter_frontend_net_LDADD = $(TESTLDADD)
147 test_filter_log_LDADD = $(TESTLDADD)
148 test_filter_multi_LDADD = $(TESTLDADD)
149 test_filter_query_rewrite_LDADD = $(TESTLDADD)
150 test_filter_z3950_client_LDADD = $(TESTLDADD)
151 test_filter_backend_test_LDADD = $(TESTLDADD)
152 test_filter_bounce_LDADD = $(TESTLDADD)
153 test_filter_record_transform_LDADD = $(TESTLDADD)
154 test_filter_sru_to_z3950_LDADD = $(TESTLDADD)
155 test_filter_virt_db_LDADD = $(TESTLDADD)
156 test_router_flexml_LDADD = $(TESTLDADD)
157 test_ses_map_LDADD = $(TESTLDADD)
158 test_thread_pool_observer_LDADD = $(TESTLDADD)
159 test_xmlutil_LDADD = $(TESTLDADD)
160
161 # doxygen target
162 dox:
163         (cd $(top_srcdir) ; make dox) 
164
165 showdox:
166         (cd $(top_srcdir) ; make showdox)