QA code now works.
[debian/gnuradio] / gruel / src / lib / pmt / Makefile.am
1 #
2 # Copyright 2008,2009 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 AM_CPPFLAGS = $(DEFINES) $(BOOST_CPPFLAGS) $(CPPUNIT_INCLUDES) $(GRUEL_INCLUDES) $(WITH_INCLUDES)
25
26
27 noinst_LTLIBRARIES = libpmt.la
28
29 # ----------------------------------------------------------------
30 # these scripts generate code
31
32 code_generator =                        \
33         generate_unv.py                 \
34         unv_template.h.t                \
35         unv_template.cc.t               \
36         unv_qa_template.cc.t            
37
38 GENERATED_H =                           \
39         pmt_unv_int.h                   \
40         qa_pmt_unv.h                    
41
42 GENERATED_CC =                          \
43         pmt_unv.cc                      \
44         qa_pmt_unv.cc                   
45
46 python_built_sources = $(GENERATED_H) $(GENERATED_CC)
47
48 PMT_SERIAL_TAGS_H = $(abs_top_builddir)/gruel/src/include/gruel/pmt_serial_tags.h
49 BUILT_SOURCES = $(python_built_sources) $(PMT_SERIAL_TAGS_H)
50
51 EXTRA_DIST = $(code_generator)
52
53 # ----------------------------------------------------------------
54
55 libpmt_la_SOURCES =                     \
56         pmt.cc                          \
57         pmt_io.cc                       \
58         pmt_pool.cc                     \
59         pmt_serialize.cc                \
60         pmt_unv.cc
61
62 libpmt_la_LIBADD =                      \
63         $(BOOST_THREAD_LIB)             \
64         -lstdc++
65
66 libpmt_la_LDFLAGS =                     \
67         $(BOOST_LDFLAGS)
68
69 noinst_HEADERS = \
70         $(GENERATED_H)                  \
71         pmt_int.h                       \
72         qa_pmt.h                        \
73         qa_pmt_prims.h
74
75 # Build the qa code into its own library
76
77 noinst_LTLIBRARIES += libpmt-qa.la
78
79 libpmt_qa_la_SOURCES =                  \
80         qa_pmt.cc                       \
81         qa_pmt_prims.cc                 \
82         qa_pmt_unv.cc                   
83
84 # magic flags
85 libpmt_qa_la_LDFLAGS = $(NO_UNDEFINED) -avoid version
86
87 libpmt_qa_la_LIBADD =                   \
88         libpmt.la                       \
89         $(CPPUNIT_LIBS)                 \
90         -lstdc++                        
91
92
93 # Do creation and inclusion of other Makefiles last
94
95 # common way for generating sources from templates when using
96 # BUILT_SOURCES, using parallel build protection.
97 gen_sources = $(python_built_sources)
98 gen_sources_deps = $(core_generator)
99 par_gen_command = PYTHONPATH=$(top_srcdir)/gruel/src/lib/pmt srcdir=$(srcdir) $(PYTHON) $(srcdir)/generate_unv.py
100 include $(top_srcdir)/Makefile.par.gen
101
102 # Rule to create the build header file using GUILE
103 # Doesn't need parallel protections because there is a single target
104 $(PMT_SERIAL_TAGS_H): $(srcdir)/../../scheme/gnuradio/gen-serial-tags.scm $(srcdir)/../../scheme/gnuradio/pmt-serial-tags.scm
105         $(RUN_GUILE) $(srcdir)/../../scheme/gnuradio/gen-serial-tags.scm $(srcdir)/../../scheme/gnuradio/pmt-serial-tags.scm $(PMT_SERIAL_TAGS_H)