e628d6b1606f2fb2cb9d62bcc5d52ea302f641db
[debian/gnuradio] / gr-howto-write-a-block / Makefile.common
1 # -*- Makefile -*-
2 #
3 # Copyright 2004,2006,2009,2010 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 # The name of this "out-of-tree" module
24 modname = howto
25
26 # these flags are used when compiling non-SWIG-wrapper files
27 # when going in to non-SWIG libraries
28 AM_CXXFLAGS = @autoconf_default_CXXFLAGS@
29
30 # these flags are used when compiling any CXX file
31 AM_CPPFLAGS = \
32         $(STD_DEFINES_AND_INCLUDES) \
33         $(PYTHON_CPPFLAGS) \
34         $(CPPUNIT_INCLUDES) \
35         $(GNURADIO_CORE_CPPFLAGS)
36
37 # these are used by both SWIG and CXX
38 STD_DEFINES_AND_INCLUDES = \
39         $(DEFINES) \
40         -I$(abs_top_srcdir)/include \
41         -I$(GNURADIO_CORE_INCLUDEDIR) \
42         -I$(GNURADIO_CORE_INCLUDEDIR)/swig
43
44 # includes
45 modincludedir = $(includedir)/$(modname)
46
47 # swig includes 
48 swigincludedir = $(modincludedir)/swig
49
50 # Install this stuff in the appropriate subdirectory
51 # This usually ends up at:
52 #   ${prefix}/lib/python${python_version}/site-packages/$(modname)
53
54 modpythondir = $(pythondir)/$(modname)
55 modpyexecdir = $(pyexecdir)/$(modname)
56
57 # Data directory for grc block wrappers
58 grc_blocksdir = $(prefix)/share/gnuradio/grc/blocks
59
60 # Don't assume that make predefines $(RM), because BSD make does
61 # not. We define it now in configure.ac using AM_PATH_PROG, but now
62 # here have to add a -f to be like GNU make.
63 RM=$(RM_PROG) -f
64
65 # Other common defines; use "+=" to add to these
66 STAMPS =
67 MOSTLYCLEANFILES = $(BUILT_SOURCES) $(STAMPS) *.pyc *.pyo *~ *.tmp *.loT
68
69 # Don't distribute the files defined in the variable 'no_dist_files'
70 dist-hook:
71         @for file in $(no_dist_files); do \
72                 echo $(RM) $(distdir)/$$file; \
73                 $(RM) $(distdir)/$$file; \
74         done;