diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-03-28 18:04:27 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-03-28 18:04:27 -0400 |
commit | 58b27b537b66cd8d4225bf9a62a0afda22e9c387 (patch) | |
tree | 2115459f6426dc4d7d40936747e908f75bb1250d /gr-digital/swig/gnuradio | |
parent | 4c54956b748980cd60153aa6f4f1afbd42a8bb06 (diff) |
digital: fixing up build structure. Compiles now.
Diffstat (limited to 'gr-digital/swig/gnuradio')
-rw-r--r-- | gr-digital/swig/gnuradio/.gitignore | 2 | ||||
-rw-r--r-- | gr-digital/swig/gnuradio/digital.scm | 28 |
2 files changed, 30 insertions, 0 deletions
diff --git a/gr-digital/swig/gnuradio/.gitignore b/gr-digital/swig/gnuradio/.gitignore new file mode 100644 index 0000000000..c264c571a4 --- /dev/null +++ b/gr-digital/swig/gnuradio/.gitignore @@ -0,0 +1,2 @@ +digital_swig-primitive.scm +digital_swig.scm diff --git a/gr-digital/swig/gnuradio/digital.scm b/gr-digital/swig/gnuradio/digital.scm new file mode 100644 index 0000000000..834bc8d6de --- /dev/null +++ b/gr-digital/swig/gnuradio/digital.scm @@ -0,0 +1,28 @@ +;;; +;;; Copyright 2011 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 3, 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 this program. If not, see <http://www.gnu.org/licenses/>. +;;; + +;;; Module that just re-exports the digital_swig module + +(define-module (gnuradio digital) + #:use-module (gnuradio export-safely) + #:use-module (gnuradio digital_swig) + #:duplicates (merge-generics replace check)) + +(re-export-all '(gnuradio digital_swig)) + |