[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3532 - gnuradio/branches/developers/jcorgan/pager/gr-
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r3532 - gnuradio/branches/developers/jcorgan/pager/gr-pager/src |
Date: |
Wed, 13 Sep 2006 14:59:43 -0600 (MDT) |
Author: jcorgan
Date: 2006-09-13 14:59:43 -0600 (Wed, 13 Sep 2006)
New Revision: 3532
Added:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/Makefile.am
Removed:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/python/
Log:
WIP reorganizing gr-pager component.
Copied: gnuradio/branches/developers/jcorgan/pager/gr-pager/src/Makefile.am
(from rev 3530,
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/Makefile.am)
===================================================================
--- gnuradio/branches/developers/jcorgan/pager/gr-pager/src/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jcorgan/pager/gr-pager/src/Makefile.am
2006-09-13 20:59:43 UTC (rev 3532)
@@ -0,0 +1,107 @@
+#
+# Copyright 2004,2005,2006 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# GNU Radio is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+include $(top_srcdir)/Makefile.common
+
+EXTRA_DIST = \
+ run_tests.in
+
+TESTS = \
+ run_tests
+
+noinst_PYTHON = \
+ qa_pager.py
+
+# Install this stuff so that it ends up as the gnuradio.pgr module
+# This usually ends up at:
+# ${prefix}/lib/python${python_version}/site-packages/gnuradio/pager
+
+ourpythondir = $(grpythondir)/pager
+ourlibdir = $(grpyexecdir)/pager
+
+INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
+
+SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
+
+ALL_IFILES = \
+ $(LOCAL_IFILES) \
+ $(NON_LOCAL_IFILES)
+
+NON_LOCAL_IFILES = \
+ $(GNURADIO_I)
+
+LOCAL_IFILES = \
+ $(top_srcdir)/gr-pager/src/pgr.i
+
+# These files are built by SWIG. The first is the C++ glue.
+# The second is the python wrapper that loads the _howto shared library
+# and knows how to call our extensions.
+
+BUILT_SOURCES = \
+ pgr.cc \
+ pgr.py
+
+# This gets pgr.py installed in the right place
+ourpython_PYTHON = \
+ __init__.py \
+ pgr.py \
+ flex_demod.py \
+ usrp_flex.py
+
+ourlib_LTLIBRARIES = _pgr.la
+
+# These are the source files that go into the shared library
+_pgr_la_SOURCES = \
+ pgr.cc \
+ pgr_slicer_fb.cc \
+ pgr_flex_modes.cc \
+ pgr_flex_deframer.cc \
+ pgri_bch3221.cc
+ # Additional source modules here
+
+# magic flags
+_pgr_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
+
+# link the library against the c++ standard library
+_pgr_la_LIBADD = \
+ $(PYTHON_LDFLAGS) \
+ $(GNURADIO_CORE_LIBS) \
+ -lstdc++
+
+pgr.cc pgr.py: $(ALL_IFILES)
+ $(SWIG) $(SWIGPYTHONARGS) -module pgr -o pgr.cc $(LOCAL_IFILES)
+
+# These headers get installed in ${prefix}/include/gnuradio
+grinclude_HEADERS = \
+ pgr_slicer_fb.h \
+ pgr_flex_deframer.h
+ # Additional header files here
+
+# These swig headers get installed in ${prefix}/include/gnuradio/swig
+swiginclude_HEADERS = \
+ $(LOCAL_IFILES)
+
+MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *~ *.tmp
+
+# Don't distribute output of swig
+dist-hook:
+ @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
+ @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3532 - gnuradio/branches/developers/jcorgan/pager/gr-pager/src,
jcorgan <=