started on RouterFleXML class, still shaky and rudimentary
[metaproxy-moved-to-github.git] / src / Makefile.am
1 ## $Id: Makefile.am,v 1.28 2005-10-26 14:12:00 marc Exp $
2
3 MAINTAINERCLEANFILES = Makefile.in config.in config.hpp
4
5 AM_CXXFLAGS = $(YAZPPINC) $(XSLT_CFLAGS)
6
7 # Rules for the library..
8
9 lib_LTLIBRARIES = libyp2.la
10 libyp2_la_LDFLAGS = -version-info 0:0:0
11
12 libyp2_la_SOURCES = \
13         session.cpp session.hpp package.hpp filter.hpp\
14         router.hpp router_chain.hpp router_chain.cpp \
15         router_flexml.hpp router_flexml.cpp \
16         thread_pool_observer.cpp thread_pool_observer.hpp \
17         filter_frontend_net.cpp filter_frontend_net.hpp \
18         filter_log.cpp filter_log.hpp \
19         filter_virt_db.cpp filter_virt_db.hpp \
20         filter_z3950_client.cpp filter_z3950_client.hpp \
21         filter_backend_test.cpp filter_backend_test.hpp \
22         test_util.cpp test_util.hpp
23
24 # Rules for programs..
25
26 LDADD= libyp2.la $(YAZPPLALIB) $(XSLT_LIBS)
27
28 bin_PROGRAMS =
29 noinst_PROGRAMS = ex_filter_frontend_net ex_libxml2_conf ex_router_flexml
30
31 ex_filter_frontend_net_SOURCES = ex_filter_frontend_net.cpp
32 ex_libxml2_conf_SOURCES = ex_libxml2_conf.cpp
33 ex_router_flexml_SOURCES =  ex_router_flexml.cpp
34 # Rules for test programs..
35
36 check_PROGRAMS = \
37         test_package1 \
38         test_filter1 test_filter2 \
39         test_session1 test_session2 \
40         test_thread_pool_observer \
41         test_boost_threads test_boost_time \
42         test_filter_frontend_net \
43         test_filter_log \
44         test_filter_z3950_client \
45         test_filter_backend_test \
46         test_filter_virt_db \
47         test_router_flexml
48
49 TESTS=$(check_PROGRAMS)
50
51 test_package1_SOURCES=test_package1.cpp
52 test_filter1_SOURCES=test_filter1.cpp
53 test_filter2_SOURCES=test_filter2.cpp
54 test_session1_SOURCES=test_session1.cpp
55 test_session2_SOURCES=test_session2.cpp
56 test_boost_threads_SOURCES=test_boost_threads.cpp
57 test_boost_time_SOURCES=test_boost_time.cpp
58 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
59 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
60 test_filter_log_SOURCES = test_filter_log.cpp
61 test_filter_z3950_client_SOURCES = test_filter_z3950_client.cpp
62 test_filter_backend_test_SOURCES = test_filter_backend_test.cpp
63 test_filter_virt_db_SOURCES = test_filter_virt_db.cpp
64 test_router_flexml_SOURCES = test_router_flexml.cpp
65
66
67 TESTLDADD = $(LDADD) -lboost_unit_test_framework
68
69 test_filter1_LDADD = $(TESTLDADD)
70 test_filter2_LDADD = $(TESTLDADD)
71 test_session1_LDADD = $(TESTLDADD)
72 test_session2_LDADD = $(TESTLDADD)
73 test_boost_threads_LDADD = $(TESTLDADD)
74 test_boost_time_LDADD = $(TESTLDADD)
75 test_thread_pool_observer_LDADD = $(TESTLDADD)
76 test_package1_LDADD = $(TESTLDADD)
77 test_filter_frontend_net_LDADD = $(TESTLDADD)
78 test_filter_log_LDADD = $(TESTLDADD)
79 test_filter_z3950_client_LDADD = $(TESTLDADD)
80 test_filter_backend_test_LDADD = $(TESTLDADD)
81 test_filter_virt_db_LDADD = $(TESTLDADD)
82 test_router_flexml_LDADD = $(TESTLDADD)
83
84 # doxygen target
85 dox:
86         (cd $(top_srcdir) ; make dox) 
87
88 showdox:
89         (cd $(top_srcdir) ; make showdox)