diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-10-07 09:11:13 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-10-07 09:11:13 -0700 |
commit | 30e016dd9cf7c148d3119f01ba7dd4d6474efa50 (patch) | |
tree | 6369c975e668d9b205dad6b4f683c04e3a79ca13 /gr-atsc | |
parent | 3a7863d31c47442a4691a8af781f87e2890f4aee (diff) |
Applied patch from Don Ward for Cygwin platform
Add *.exe to .gitignore
Restore ac_compiler in gr_fortran.m4 even when no Fortran was found
Add $(NO_UNDEFINED) to LDFLAGS in atsc Makefile.am, so shared libraries
will be built
Change the order of searching pmt/libpmt-qa.la and libgruel.la in gruel
Makefile.am so references to libgruel from limpmt-qa will be resolved
Diffstat (limited to 'gr-atsc')
-rw-r--r-- | gr-atsc/src/lib/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gr-atsc/src/lib/Makefile.am b/gr-atsc/src/lib/Makefile.am index b435461254..8aeb80c0a5 100644 --- a/gr-atsc/src/lib/Makefile.am +++ b/gr-atsc/src/lib/Makefile.am @@ -92,6 +92,9 @@ BUILT_SOURCES = \ libgnuradio_atsc_la_LIBADD = \ $(GNURADIO_CORE_LA) +libgnuradio_atsc_la_LDFLAGS = \ + $(NO_UNDEFINED) + noinst_LTLIBRARIES = libgnuradio-atsc-qa.la libgnuradio_atsc_qa_la_SOURCES = \ @@ -113,6 +116,9 @@ libgnuradio_atsc_qa_la_SOURCES = \ libgnuradio_atsc_qa_la_LIBADD = \ $(GNURADIO_CORE_LA) +libgnuradio_atsc_qa_la_LDFLAGS = \ + $(NO_UNDEFINED) + # These headers get installed in ${prefix}/include/gnuradio grinclude_HEADERS = \ |