Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / Makefile.am
1 ## $Id: Makefile.am,v 1.50 2006-03-16 10:40:59 adam 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_frontend_net.cpp filter_frontend_net.hpp \
21         filter_http_file.cpp filter_http_file.hpp \
22         filter_log.cpp filter_log.hpp \
23         filter_multi.cpp filter_multi.hpp \
24         filter_query_rewrite.cpp filter_query_rewrite.hpp \
25         filter_session_shared.cpp filter_session_shared.hpp \
26         filter_template.cpp filter_template.hpp \
27         filter_virt_db.cpp filter_virt_db.hpp \
28         filter_z3950_client.cpp filter_z3950_client.hpp \
29         package.cpp package.hpp \
30         pipe.cpp pipe.hpp \
31         plainfile.cpp \
32         router.hpp router_chain.hpp router_chain.cpp \
33         router_flexml.hpp router_flexml.cpp \
34         session.cpp session.hpp \
35         thread_pool_observer.cpp thread_pool_observer.hpp \
36         util.cpp util.hpp \
37         xmlutil.cpp xmlutil.hpp
38
39 # Rules for programs..
40
41 LDADD= libmetaproxy.la $(YAZPPLALIB) $(XSLT_LIBS)
42
43 bin_PROGRAMS = metaproxy
44 noinst_PROGRAMS = ex_filter_frontend_net ex_router_flexml tstdl
45
46 ex_filter_frontend_net_SOURCES = ex_filter_frontend_net.cpp
47 ex_router_flexml_SOURCES =  ex_router_flexml.cpp
48 tstdl_SOURCES = tstdl.cpp
49 metaproxy_SOURCES = metaproxy_prog.cpp
50
51 # Rules for dl programs
52 pkglib_LTLIBRARIES = metaproxy_filter_dl.la
53
54 metaproxy_filter_dl_la_SOURCES = filter_dl.cpp
55 metaproxy_filter_dl_la_LDFLAGS = -rpath $(pkglibdir) -module -avoid-version
56 metaproxy_filter_dl_la_LIBADD = libmetaproxy.la
57
58 # Rules for test programs..
59
60 check_PROGRAMS = \
61         test_package1 \
62         test_pipe \
63         test_filter1 test_filter2 \
64         test_session1 test_session2 \
65         test_thread_pool_observer \
66         test_boost_threads test_boost_time \
67         test_filter_auth_simple \
68         test_filter_factory \
69         test_filter_frontend_net \
70         test_filter_log \
71         test_filter_multi \
72         test_filter_query_rewrite \
73         test_filter_z3950_client \
74         test_filter_backend_test \
75         test_filter_virt_db \
76         test_ses_map \
77         test_router_flexml
78
79 TESTS=$(check_PROGRAMS)
80
81 test_package1_SOURCES=test_package1.cpp
82 test_pipe_SOURCES=test_pipe.cpp
83 test_filter1_SOURCES=test_filter1.cpp
84 test_filter2_SOURCES=test_filter2.cpp
85 test_session1_SOURCES=test_session1.cpp
86 test_session2_SOURCES=test_session2.cpp
87 test_boost_threads_SOURCES=test_boost_threads.cpp
88 test_boost_time_SOURCES=test_boost_time.cpp
89 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
90 test_filter_auth_simple_SOURCES = test_filter_auth_simple.cpp
91 test_filter_factory_SOURCES = test_filter_factory.cpp
92 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
93 test_filter_log_SOURCES = test_filter_log.cpp
94 test_filter_multi_SOURCES = test_filter_multi.cpp
95 test_filter_query_rewrite_SOURCES = test_filter_query_rewrite.cpp
96 test_filter_z3950_client_SOURCES = test_filter_z3950_client.cpp
97 test_filter_backend_test_SOURCES = test_filter_backend_test.cpp
98 test_filter_virt_db_SOURCES = test_filter_virt_db.cpp
99 test_ses_map_SOURCES = test_ses_map.cpp
100 test_router_flexml_SOURCES = test_router_flexml.cpp
101
102 TESTLDADD = $(LDADD) -lboost_unit_test_framework
103
104 test_package1_LDADD = $(TESTLDADD)
105 test_pipe_LDADD = $(TESTLDADD)
106 test_filter1_LDADD = $(TESTLDADD)
107 test_filter2_LDADD = $(TESTLDADD)
108 test_session1_LDADD = $(TESTLDADD)
109 test_session2_LDADD = $(TESTLDADD)
110 test_boost_threads_LDADD = $(TESTLDADD)
111 test_boost_time_LDADD = $(TESTLDADD)
112 test_thread_pool_observer_LDADD = $(TESTLDADD)
113 test_filter_auth_simple_LDADD = $(TESTLDADD)
114 test_filter_factory_LDADD = $(TESTLDADD)
115 test_filter_frontend_net_LDADD = $(TESTLDADD)
116 test_filter_log_LDADD = $(TESTLDADD)
117 test_filter_multi_LDADD = $(TESTLDADD)
118 test_filter_query_rewrite_LDADD = $(TESTLDADD)
119 test_filter_z3950_client_LDADD = $(TESTLDADD)
120 test_filter_backend_test_LDADD = $(TESTLDADD)
121 test_filter_virt_db_LDADD = $(TESTLDADD)
122 test_ses_map_LDADD = $(TESTLDADD)
123 test_router_flexml_LDADD = $(TESTLDADD)
124
125 # doxygen target
126 dox:
127         (cd $(top_srcdir) ; make dox) 
128
129 showdox:
130         (cd $(top_srcdir) ; make showdox)