Changed $(builddir) to ".", since it should always be that.
[debian/gnuradio] / Makefile.common
1 # -*- Makefile -*-
2 #
3 # Copyright 2004,2006,2007,2008,2009 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 AM_CXXFLAGS = @autoconf_default_CXXFLAGS@
24
25 # includes
26 grincludedir = $(includedir)/gnuradio
27
28 # swig includes
29 swigincludedir = $(grincludedir)/swig
30
31 # Install the gnuradio stuff in the appropriate subdirectory
32 # This usually ends up at:
33 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
34
35 grpythondir = $(pythondir)/gnuradio
36 grpyexecdir = $(pyexecdir)/gnuradio
37
38 # Install the non-gnuradio usrp stuff in the appropriate subdirectory
39 # This usually ends up at:
40 #   ${prefix}/lib/python${python_version}/site-packages/usrpm
41
42 usrppythondir = $(pythondir)/usrpm
43 usrppyexecdir = $(pyexecdir)/usrpm
44
45 # gcell includes
46 gcellincludedir = $(includedir)/gcell
47 gcellspuincludedir = $(includedir)/gcell/spu
48
49 # Cell spu libs
50 libspudir = $(libdir)spu
51
52 # This used to be set in configure.ac but is now defined here for all 
53 # Makefiles when this fragment is included.
54 STD_DEFINES_AND_INCLUDES = $(DEFINES) $(BOOST_CPPFLAGS) \
55         $(OMNITHREAD_INCLUDES) $(GNURADIO_INCLUDES) $(GRUEL_INCLUDES)
56
57 # when including for compilation from pre-installed libraries and such,
58 # need to make sure those are put last on the compile command
59 WITH_INCLUDES = @with_INCLUDES@
60 WITH_SWIG_INCLUDES = @with_SWIG_INCLUDES@
61
62 # swig flags
63 # -w511 turns off keyword argument warning
64 # "-outdir $(builddir)" writes all generated output files to
65 #   the local builddir (which should always be '.')
66 SWIG_PYTHON_FLAGS = -fvirtual -python -modern -keyword \
67         -w511 -outdir .
68
69 # standard swig flags used by most components
70 STD_SWIG_PYTHON_ARGS = \
71         $(SWIG_PYTHON_FLAGS) \
72         $(STD_DEFINES_AND_INCLUDES) \
73         $(LOCAL_SWIG_DEFINES_AND_INCLUDES) \
74         $(WITH_SWIG_INCLUDES) \
75         $(WITH_INCLUDES)
76
77 # How to link in the top-level omnithreads library from inside the tree
78 OMNITHREAD_INCLUDES = @omnithread_INCLUDES@
79 OMNITHREAD_LA = @omnithread_LA@
80
81 # Where to find gnuradio include files in the current build tree
82 # top_srcdir for original stuff, top_builddir for generated files
83 GNURADIO_INCLUDES = @gnuradio_core_INCLUDES@
84
85 # How to link in GNU Radio core library from inside the tree
86 GNURADIO_CORE_LA = @gnuradio_core_LA@
87
88 # This is a dependency for many swig operations
89 GNURADIO_I = @gnuradio_core_I@
90
91 # How to link in the USRP library from inside the tree
92 GRUEL_INCLUDES = @gruel_INCLUDES@
93 GRUEL_LA = @gruel_LA@
94
95 # How to link in the USRP library from inside the tree
96 USRP_INCLUDES = @usrp_INCLUDES@
97 USRP_LA = @usrp_LA@
98
99 # How to link in usrp-inband library from inside the tree
100 USRP_INBAND_INCLUDES = @usrp_inband_INCLUDES@
101 USRP_INBAND_LA = @usrp_inband_LA@
102
103 # How to link the PMT library from inside the tree
104 PMT_INCLUDES = @pmt_INCLUDES@
105 PMT_LA = @pmt_LA@
106
107 # How to link the mblock library from inside the tree
108 MBLOCK_INCLUDES = @mblock_INCLUDES@
109 MBLOCK_LA = @mblock_LA@
110
111 # How to link the gcell library from inside the tree (the PPU part)
112 GCELL_INCLUDES = @gcell_INCLUDES@
113 GCELL_LA = @gcell_LA@
114
115 # How to link the gcell library from inside the tree (the SPU part)
116 GCELL_SPU_INCLUDES = @gcell_spu_INCLUDES@
117 GCELL_SPU_LA = @gcell_spu_LA@
118
119 # libtool aware wrapper for ppu-embedspu
120 GCELL_EMBEDSPU_LIBTOOL = @abs_top_srcdir@/gcell/lib/runtime/gcell-embedspu-libtool
121
122 # Fix for BSD make not defining $(RM).  We define it now in configure.ac
123 # using AM_PATH_PROG, but now here have to add a -f to be like GNU make
124 RM=$(RM_PROG) -f
125
126 RUN_GUILE = GUILE_LOAD_PATH="@abs_top_srcdir@/pmt/src/scheme:@abs_top_srcdir@/mblock/src/scheme" @GUILE@ -e main -s
127 COMPILE_MBH = $(RUN_GUILE) $(top_srcdir)/mblock/src/scheme/gnuradio/compile-mbh.scm
128
129 # Base directory for example applications
130 exampledir = $(datadir)/gnuradio/examples
131
132 # Base directory for documentation (docdir undefined in autoconf < 1.60)
133 gr_docdir = $(if $(docdir),$(docdir),$(datadir)/doc/$(PACKAGE))-$(VERSION)