Added ex_filter_frontend_net noinst program
[metaproxy-moved-to-github.git] / src / Makefile.am
1 ## $Id: Makefile.am,v 1.18 2005-10-14 11:18:59 adam 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 = filter_frontend_net.cpp filter_frontend_net.hpp \
13         session.cpp session.hpp package.hpp filter.hpp router.hpp \
14         thread_pool_observer.cpp thread_pool_observer.hpp
15
16 # Rules for programs..
17
18 LDADD= libyp2.la $(YAZPPLALIB) $(XSLT_LIBS)
19
20 bin_PROGRAMS =
21 noinst_PROGRAMS = ex_filter_frontend_net
22
23 ex_filter_frontend_net_SOURCES = ex_filter_frontend_net.cpp
24
25 # Rules for test programs..
26
27 check_PROGRAMS = \
28         test_package1 \
29         test_filter1 test_filter2 \
30         test_session1 test_session2 \
31         test_thread_pool_observer \
32         test_boost_threads test_boost_time \
33         test_filter_frontend_net
34
35 TESTS=$(check_PROGRAMS)
36
37 test_package1_SOURCES=test_package1.cpp
38 test_filter1_SOURCES=test_filter1.cpp
39 test_filter2_SOURCES=test_filter2.cpp
40 test_session1_SOURCES=test_session1.cpp
41 test_session2_SOURCES=test_session2.cpp
42 test_boost_threads_SOURCES=test_boost_threads.cpp
43 test_boost_time_SOURCES=test_boost_time.cpp
44 test_thread_pool_observer_SOURCES = test_thread_pool_observer.cpp
45 test_filter_frontend_net_SOURCES = test_filter_frontend_net.cpp
46
47 TESTLDADD = $(LDADD) -lboost_unit_test_framework
48
49 test_filter1_LDADD = $(TESTLDADD)
50 test_filter2_LDADD = $(TESTLDADD)
51 test_session1_LDADD = $(TESTLDADD)
52 test_session2_LDADD = $(TESTLDADD)
53 test_boost_threads_LDADD = $(TESTLDADD)
54 test_boost_time_LDADD = $(TESTLDADD)
55 test_thread_pool_observer_LDADD = $(TESTLDADD)
56 test_package1_LDADD = $(TESTLDADD)
57 test_filter_frontend_net_LDADD = $(TESTLDADD)
58
59 # doxygen target
60 dox:
61         (cd $(top_srcdir) ; make dox) 
62
63 showdox:
64         (cd $(top_srcdir) ; make showdox)