summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2008-03-24 06:09:29 +0000
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2008-03-24 06:09:29 +0000
commit28361a1bfc8f155a7b1367a234c9256b7b69da38 (patch)
treed75e71d0e87a56a542f905256688475662eee075 /Makefile.common
parenta3ee0a2d8557477c873fb0bb43a34455944f7f58 (diff)
Merged gcell, the Cell SPE scheduler and RPC mechanism into the trunk.
(eb/trunk-with-gcell r8037:8085). Expect additional tweaks, but currently works and passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8086 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index 300e92fc47..ace03b90ca 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -42,6 +42,14 @@ grpyexecdir = $(pyexecdir)/gnuradio
usrppythondir = $(pythondir)/usrpm
usrppyexecdir = $(pyexecdir)/usrpm
+# gcell includes
+gcellincludedir = $(includedir)/gcell
+gcellspuincludedir = $(includedir)/gcell/spu
+
+# Cell spu libs
+libspudir = $(libdir)spu
+
+
# when including for compilation from pre-installed libraries and such,
# need to make sure those are put last on the compile command
WITH_INCLUDES = @with_INCLUDES@
@@ -80,6 +88,14 @@ PMT_LA = @pmt_LA@
MBLOCK_INCLUDES = @mblock_INCLUDES@
MBLOCK_LA = @mblock_LA@
+# How to link the gcell library from inside the tree (the PPU part)
+GCELL_INCLUDES = @gcell_INCLUDES@
+GCELL_LA = @gcell_LA@
+
+# How to link the gcell library from inside the tree (the SPU part)
+GCELL_SPU_INCLUDES = @gcell_spu_INCLUDES@
+GCELL_SPU_LA = @gcell_spu_LA@
+
# This used to be set in configure.ac but is now defined here for all
# Makefiles when this fragment is included.
STD_DEFINES_AND_INCLUDES=$(DEFINES) $(OMNITHREAD_INCLUDES) $(GNURADIO_INCLUDES) $(BOOST_CFLAGS)