Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / mblock / src / lib / Makefile.am
1 #
2 # Copyright 2006 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 INCLUDES = $(PMT_INCLUDES) $(BOOST_CFLAGS) $(CPPUNIT_INCLUDES)
25
26 # TESTS = test_mblock
27
28 lib_LTLIBRARIES = libmblock.la libmblock-qa.la
29
30 EXTRA_DIST =                            
31
32
33 # These are the source files that go into the mblock shared library
34 libmblock_la_SOURCES =                  \
35         mb_message.cc                   \
36         mb_protocol_class.cc            
37
38
39 # magic flags
40 libmblock_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
41
42 # link the library against the c++ standard library
43 libmblock_la_LIBADD =                   \
44         $(PMT_LIBS)                     \
45         -lstdc++                        
46
47 include_HEADERS =                       \
48         mb_mblock.h                     \
49         mb_common.h                     \
50         mb_message.h                    \
51         mb_protocol_class.h             
52
53 noinst_HEADERS =                        
54
55
56 # Build the qa code into its own library
57
58 libmblock_qa_la_SOURCES =               
59
60
61 # magic flags
62 libmblock_qa_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
63
64 # link the library against the c++ standard library
65 libmblock_qa_la_LIBADD =                        \
66         libmblock.la                            \
67         $(CPPUNIT_LIBS)                         \
68         -lstdc++                        
69
70
71 #noinst_PROGRAMS        =                       \
72 #       test_mblock
73
74
75 LIBMBLOCK   = libmblock.la
76 LIBMBLOCKQA = libmblock-qa.la $(LIBMBLOCK)
77
78 #test_mblock_SOURCES = test_mblock.cc
79 #test_mblock_LDADD   = $(LIBMBLOCKQA)
80
81
82 CLEANFILES = $(BUILT_SOURCES) *.pyc