summaryrefslogtreecommitdiff
path: root/gr-radar/src/lib
diff options
context:
space:
mode:
authoreb2006-08-26 05:39:21 +0000
committereb2006-08-26 05:39:21 +0000
commit4eea1411eef278b7d3a2c243a97ecc99709a6372 (patch)
tree940e4012f98d3addc9e48e2931f1b0d0401a41ca /gr-radar/src/lib
parent287fc41d5f82ff3236aa270689bd55278e2c841a (diff)
downloadgnuradio-4eea1411eef278b7d3a2c243a97ecc99709a6372.tar.gz
gnuradio-4eea1411eef278b7d3a2c243a97ecc99709a6372.tar.bz2
gnuradio-4eea1411eef278b7d3a2c243a97ecc99709a6372.zip
added $(NO_UNDEFINED) to Makefile.am
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3422 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-radar/src/lib')
-rw-r--r--gr-radar/src/lib/Makefile.am23
1 files changed, 7 insertions, 16 deletions
diff --git a/gr-radar/src/lib/Makefile.am b/gr-radar/src/lib/Makefile.am
index be4b50379..4c240b182 100644
--- a/gr-radar/src/lib/Makefile.am
+++ b/gr-radar/src/lib/Makefile.am
@@ -57,6 +57,13 @@ libradar_la_SOURCES = \
simulation.h \
simulation.cc
+# magic flags
+libradar_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
+
+# link the libraray against the c++ standard library
+libradar_la_LIBADD = \
+ -lstdc++
+
bin_PROGRAMS = \
xambi \
eb-xambi \
@@ -78,22 +85,6 @@ sim_airplane2_LDADD = libradar.la $(GNURADIO_CORE_LIBS)
# This gets howto.py installed in the right place
# ourpython_PYTHON =
-#ourlib_LTLIBRARIES = _howto.la
-
-# These are the source files that go into the shared library
-#_howto_la_SOURCES = \
-# howto.cc \
-# howto_square_ff.cc \
-# howto_square2_ff.cc
-
-# magic flags
-#_howto_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
-
-# link the library against some comon swig runtime code and the
-# c++ standard library
-#_howto_la_LIBADD = \
-# $(PYTHON_LDFLAGS) \
-# -lstdc++
#howto.cc howto.py: howto.i $(ALL_IFILES)
# $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc $<