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