Changeset 9677
- Timestamp:
- 09/29/08 18:18:53
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/Makefile.am
r9624 r9677 60 60 qtgui.py 61 61 62 # Build the library for Python module to link against 62 63 ourlib_LTLIBRARIES = _qtgui.la 64 65 # Build the normal library for C++ apps to link against 66 lib_LTLIBRARIES = libqtgui.la 63 67 64 68 # These are the source files that go into the shared library … … 82 86 qtspectrum/.moc/moc_spectrumdisplayform.cpp 83 87 88 libqtgui_la_SOURCES = $(_qtgui_la_SOURCES) 89 84 90 # magic flags 85 91 _qtgui_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version 92 libqtgui_la_LDFLAGS = $(NO_UNDEFINED) -version-info 0:0:0 86 93 87 94 # link the library against the c++ standard library 88 95 _qtgui_la_LIBADD = \ 89 96 $(PYTHON_LDFLAGS) \ 97 $(GNURADIO_CORE_LA) \ 98 -lstdc++ \ 99 $(QT_LIBS) 100 101 102 libqtgui_la_LIBADD = \ 90 103 $(GNURADIO_CORE_LA) \ 91 104 -lstdc++ \
