8423671a378f37c291971dd560f5ab24e5cdd282
[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 # Sets ABI version in SONAME and appends -LIBVER to filename
31 LTVERSIONFLAGS = -version-info 0:0:0 -release $(LIBVER)
32
33 # these flags are used when compiling any CXX file
34 AM_CPPFLAGS = \
35         $(STD_DEFINES_AND_INCLUDES) \
36         $(PYTHON_CPPFLAGS) \
37         $(CPPUNIT_INCLUDES) \
38         $(GNURADIO_CORE_CPPFLAGS)
39
40 # these are used by both SWIG and CXX
41 STD_DEFINES_AND_INCLUDES = \
42         $(DEFINES) \
43         -I$(abs_top_srcdir)/include \
44         -I$(GNURADIO_CORE_INCLUDEDIR) \
45         -I$(GNURADIO_CORE_INCLUDEDIR)/swig
46
47 # includes
48 modincludedir = $(includedir)/$(modname)
49
50 # swig includes 
51 swigincludedir = $(modincludedir)/swig
52
53 # Install this stuff in the appropriate subdirectory
54 # This usually ends up at:
55 #   ${prefix}/lib/python${python_version}/site-packages/$(modname)
56
57 modpythondir = $(pythondir)/$(modname)
58 modpyexecdir = $(pyexecdir)/$(modname)
59
60 # Data directory for grc block wrappers
61 grc_blocksdir = $(prefix)/share/gnuradio/grc/blocks
62
63 # Don't assume that make predefines $(RM), because BSD make does
64 # not. We define it now in configure.ac using AM_PATH_PROG, but now
65 # here have to add a -f to be like GNU make.
66 RM=$(RM_PROG) -f
67
68 # Other common defines; use "+=" to add to these
69 STAMPS =
70 MOSTLYCLEANFILES = $(BUILT_SOURCES) $(STAMPS) *.pyc *.pyo *~ *.tmp *.loT
71
72 # Don't distribute the files defined in the variable 'no_dist_files'
73 dist-hook:
74         @for file in $(no_dist_files); do \
75                 echo $(RM) $(distdir)/$$file; \
76                 $(RM) $(distdir)/$$file; \
77         done;