Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / pmt / 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 3, 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 = $(DEFINES) $(OMNITHREAD_INCLUDES) $(BOOST_CFLAGS) $(CPPUNIT_INCLUDES) 
25
26 TESTS = test_pmt
27
28 lib_LTLIBRARIES = libpmt.la libpmt-qa.la
29
30 # ----------------------------------------------------------------
31 # these scripts generate code
32
33 CODE_GENERATOR =                        \
34         generate_unv.py                 \
35         unv_template.h.t                \
36         unv_template.cc.t               \
37         unv_qa_template.cc.t            
38
39 GENERATED_H =                           \
40         pmt_unv_int.h                   \
41         qa_pmt_unv.h                    
42
43 GENERATED_CC =                          \
44         pmt_unv.cc                      \
45         qa_pmt_unv.cc                   
46
47
48 $(GENERATED_H) $(GENERATED_I) $(GENERATED_CC): $(CODE_GENERATOR)
49         PYTHONPATH=$(top_srcdir)/pmt/src/lib srcdir=$(srcdir) $(PYTHON) $(srcdir)/generate_unv.py
50
51 pmt_serial_tags.h: $(srcdir)/../scheme/gnuradio/gen-serial-tags.scm $(srcdir)/../scheme/gnuradio/pmt-serial-tags.scm
52         $(RUN_GUILE) $(srcdir)/../scheme/gnuradio/gen-serial-tags.scm $(srcdir)/../scheme/gnuradio/pmt-serial-tags.scm pmt_serial_tags.h
53
54 BUILT_SOURCES = $(GENERATED_H) $(GENERATED_CC) pmt_serial_tags.h
55
56 # ----------------------------------------------------------------
57
58 EXTRA_DIST =                            \
59         $(CODE_GENERATOR)               
60
61 # These are the source files that go into the pmt shared library
62 libpmt_la_SOURCES =                     \
63         pmt.cc                          \
64         pmt_io.cc                       \
65         pmt_pool.cc                     \
66         pmt_serialize.cc                \
67         pmt_unv.cc                      
68
69 # magic flags
70 libpmt_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
71
72 # link the library against the c++ standard library
73 libpmt_la_LIBADD =                      \
74         $(OMNITHREAD_LA)                \
75         -lstdc++                        
76
77 include_HEADERS =                       \
78         pmt.h                           \
79         pmt_pool.h                      \
80         pmt_serial_tags.h               
81
82 noinst_HEADERS =                        \
83         $(GENERATED_H)                  \
84         pmt_int.h                       \
85         qa_pmt.h                        \
86         qa_pmt_prims.h                  
87
88
89 # Build the qa code into its own library
90
91 libpmt_qa_la_SOURCES =                  \
92         qa_pmt.cc                       \
93         qa_pmt_prims.cc                 \
94         qa_pmt_unv.cc                   
95
96 # magic flags
97 libpmt_qa_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
98
99 libpmt_qa_la_LIBADD =                   \
100         libpmt.la                       \
101         $(CPPUNIT_LIBS)                 \
102         -lstdc++                        
103
104
105 noinst_PROGRAMS =                       \
106         test_pmt
107
108
109 LIBPMT   = libpmt.la
110 LIBPMTQA = libpmt-qa.la $(LIBPMT)
111
112 test_pmt_SOURCES = test_pmt.cc
113 test_pmt_LDADD   = $(LIBPMTQA)
114
115
116 CLEANFILES = $(BUILT_SOURCES) *.pyc