added first version of ZeeRex Explain filter for SRU explain
[metaproxy-moved-to-github.git] / src / Makefile.am
1 ## $Id: Makefile.am,v 1.60 2006-12-28 14:59:44 marc Exp $
2
3 MAINTAINERCLEANFILES = Makefile.in config.in config.hpp
4
5 AM_CXXFLAGS = $(YAZPPINC) $(XSLT_CFLAGS)
6
7 EXTRA_DIST=Jamfile.in
8
9 # Rules for the library..
10
11 lib_LTLIBRARIES = libmetaproxy.la
12 libmetaproxy_la_LDFLAGS = -version-info 1:0:0 -export-dynamic
13
14 libmetaproxy_la_SOURCES = \
15         factory_filter.cpp factory_filter.hpp \
16         factory_static.cpp factory_static.hpp \
17         filter.hpp filter.cpp \
18         filter_auth_simple.cpp filter_auth_simple.hpp \
19         filter_backend_test.cpp filter_backend_test.hpp \
20         filter_bounce.cpp filter_bounce.hpp \
21         filter_frontend_net.cpp filter_frontend_net.hpp \
22         filter_http_file.cpp filter_http_file.hpp \
23         filter_log.cpp filter_log.hpp \
24         filter_multi.cpp filter_multi.hpp \
25         filter_query_rewrite.cpp filter_query_rewrite.hpp \
26         filter_record_transform.cpp filter_record_transform.hpp \
27         filter_session_shared.cpp filter_session_shared.hpp \
28         filter_sru_to_z3950.cpp  filter_sru_to_z3950.hpp \
29         filter_template.cpp filter_template.hpp \
30         filter_virt_db.cpp filter_virt_db.hpp \
31         filter_z3950_client.cpp filter_z3950_client.hpp \
32         filter_zeerex_explain.cpp  filter_zeerex_explain.hpp \
33         gduutil.cpp gduutil.hpp \
34         origin.cpp origin.hpp \
35         package.cpp package.hpp \
36         pipe.cpp pipe.hpp \
37         plainfile.cpp \
38         router.hpp router_chain.hpp router_chain.cpp \
39         router_flexml.hpp router_flexml.cpp \
40         session.cpp session.hpp \
41         sru_util.cpp sru_util.hpp \
42         thread_pool_observer.cpp thread_pool_observer.hpp \
43         util.cpp util.hpp \
44         xmlutil.cpp xmlutil.hpp
45
46 # Rules for programs..
47
48 LDADD= libmetaproxy.la $(YAZPPLALIB) $(XSLT_LIBS)
49
50 bin_PROGRAMS = metaproxy
51 noinst_PROGRAMS = ex_filter_frontend_net ex_router_flexml tstdl
52
53 ex_filter_frontend_net_SOURCES = ex_filter_frontend_net.cpp
54 ex_router_flexml_SOURCES =  ex_router_flexml.cpp
55 tstdl_SOURCES = tstdl.cpp
56 metaproxy_SOURCES = metaproxy_prog.cpp
57
58 # Rules for dl programs
59 pkglib_LTLIBRARIES = metaproxy_filter_dl.la
60
61 metaproxy_filter_dl_la_SOURCES = filter_dl.cpp
62 metaproxy_filter_dl_la_LDFLAGS = -rpath $(pkglibdir) -module -avoid-version
63 metaproxy_filter_dl_la_LIBADD = libmetaproxy.la
64
65 # Rules for test programs..
66
67 check_PROGRAMS = \
68         test_package1 \
69         test_pipe \
70         test_filter1 test_filter2 \
71         test_session1 test_session2 \
72         test_thread_pool_observer \
73         test_boost_threads test_boost_time \
74         test_filter_auth_simple \
75         test_filter_factory \
76         test_filter_frontend_net \
77         test_filter_log \
78         test_filter_multi \
79         test_filter_query_rewrite \
80         test_filter_z3950_client \
81         test_filter_backend_test \
82         test_filter_bounce \
83         test_filter_record_transform \
84         test_filter_sru_to_z3950 \
85         test_filter_virt_db \
86         test_ses_map \
87         test_router_flexml
88
89 TESTS=$(check_PROGRAMS)
90
91 test_package1_SOURCES=test_package1.cpp
92 test_pipe_SOURCES=test_pipe.cpp
93 test_filter1_SOURCES=test_filter1.cpp
94 test_filter2_SOURCES=test_filter2.cpp
95 test_session1_SOURCES=test_session1.cpp
96 test_session2_SOURCES=test_session2.cpp
97 test_boost_threads_SOURCES=test_boost_threads.cpp
98 test_boost_time_SOURCES=test_boost_time.cpp
99 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
100 test_filter_auth_simple_SOURCES = test_filter_auth_simple.cpp
101 test_filter_factory_SOURCES = test_filter_factory.cpp
102 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
103 test_filter_log_SOURCES = test_filter_log.cpp
104 test_filter_multi_SOURCES = test_filter_multi.cpp
105 test_filter_query_rewrite_SOURCES = test_filter_query_rewrite.cpp
106 test_filter_z3950_client_SOURCES = test_filter_z3950_client.cpp
107 test_filter_backend_test_SOURCES = test_filter_backend_test.cpp
108 test_filter_bounce_SOURCES = test_filter_bounce.cpp
109 test_filter_record_transform_SOURCES = test_filter_record_transform.cpp
110 test_filter_sru_to_z3950_SOURCES = test_filter_sru_to_z3950.cpp
111 test_filter_virt_db_SOURCES = test_filter_virt_db.cpp
112 test_ses_map_SOURCES = test_ses_map.cpp
113 test_router_flexml_SOURCES = test_router_flexml.cpp
114
115 TESTLDADD = $(LDADD) -lboost_unit_test_framework
116
117 test_package1_LDADD = $(TESTLDADD)
118 test_pipe_LDADD = $(TESTLDADD)
119 test_filter1_LDADD = $(TESTLDADD)
120 test_filter2_LDADD = $(TESTLDADD)
121 test_session1_LDADD = $(TESTLDADD)
122 test_session2_LDADD = $(TESTLDADD)
123 test_boost_threads_LDADD = $(TESTLDADD)
124 test_boost_time_LDADD = $(TESTLDADD)
125 test_filter_auth_simple_LDADD = $(TESTLDADD)
126 test_filter_factory_LDADD = $(TESTLDADD)
127 test_filter_frontend_net_LDADD = $(TESTLDADD)
128 test_filter_log_LDADD = $(TESTLDADD)
129 test_filter_multi_LDADD = $(TESTLDADD)
130 test_filter_query_rewrite_LDADD = $(TESTLDADD)
131 test_filter_z3950_client_LDADD = $(TESTLDADD)
132 test_filter_backend_test_LDADD = $(TESTLDADD)
133 test_filter_bounce_LDADD = $(TESTLDADD)
134 test_filter_record_transform_LDADD = $(TESTLDADD)
135 test_filter_sru_to_z3950_LDADD = $(TESTLDADD)
136 test_filter_virt_db_LDADD = $(TESTLDADD)
137 test_router_flexml_LDADD = $(TESTLDADD)
138 test_ses_map_LDADD = $(TESTLDADD)
139 test_thread_pool_observer_LDADD = $(TESTLDADD)
140
141 # doxygen target
142 dox:
143         (cd $(top_srcdir) ; make dox) 
144
145 showdox:
146         (cd $(top_srcdir) ; make showdox)