[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3837 - gnuradio/trunk/gr-howto-write-a-block/src/lib
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r3837 - gnuradio/trunk/gr-howto-write-a-block/src/lib |
Date: |
Mon, 23 Oct 2006 11:29:53 -0600 (MDT) |
Author: jcorgan
Date: 2006-10-23 11:29:52 -0600 (Mon, 23 Oct 2006)
New Revision: 3837
Modified:
gnuradio/trunk/gr-howto-write-a-block/src/lib/Makefile.am
Log:
Fix make distcheck breakage.
Modified: gnuradio/trunk/gr-howto-write-a-block/src/lib/Makefile.am
===================================================================
--- gnuradio/trunk/gr-howto-write-a-block/src/lib/Makefile.am 2006-10-23
17:07:33 UTC (rev 3836)
+++ gnuradio/trunk/gr-howto-write-a-block/src/lib/Makefile.am 2006-10-23
17:29:52 UTC (rev 3837)
@@ -41,7 +41,7 @@
LOCAL_IFILES = \
- howto.i
+ $(top_srcdir)/src/lib/howto.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
@@ -72,8 +72,8 @@
$(PYTHON_LDFLAGS) \
-lstdc++
-howto.cc howto.py: howto.i $(ALL_IFILES)
- $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc howto.i
+howto.cc howto.py: $(LOCAL_IFILES) $(ALL_IFILES)
+ $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc $(LOCAL_IFILES)
# These headers get installed in ${prefix}/include/gnuradio
grinclude_HEADERS = \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3837 - gnuradio/trunk/gr-howto-write-a-block/src/lib,
jcorgan <=