diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-03-24 06:09:29 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-03-24 06:09:29 +0000 |
commit | 28361a1bfc8f155a7b1367a234c9256b7b69da38 (patch) | |
tree | d75e71d0e87a56a542f905256688475662eee075 /Makefile.common | |
parent | a3ee0a2d8557477c873fb0bb43a34455944f7f58 (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.common | 16 |
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) |