diff options
-rw-r--r-- | TODO.build | 45 | ||||
-rw-r--r-- | gnuradio-core/Makefile.am | 3 | ||||
-rw-r--r-- | gnuradio-core/doc/Makefile.am | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/Makefile.am | 3 |
4 files changed, 47 insertions, 6 deletions
diff --git a/TODO.build b/TODO.build new file mode 100644 index 000000000..4c62b8789 --- /dev/null +++ b/TODO.build @@ -0,0 +1,45 @@ +Overall: + +* VPATH builds fail, starting with usrp. + +* Change a Makefile.am in a subdir, must manually go back up and re-run +configure. Otherwise it gets run somehow incorrectly. + +* Fix overuse of LIBS vs. LIBADD, LDADD, or LDFLAGS, allong with xxx_ + +* Make dist and distcheck have not been tested. + +dtools: + +* No checking or testing done in this directory. + +gnuradio-core: + +* NEWS, README, and TODO are stale. + +gnuradio-core/doc: + +* Make hasn't been tested yet in this directory. + +gnuradio-core/src/gen_interpolator_taps: + +* Make hasn't been tested yet in this directory. + +gnuradio-core/src/lib/filter: + +* README is stale. + +gnuradio-core/src/lib/general: + +* README is stale. + +gnuradio-core/src/lib/tests: + +* Cleanup libgnuradio-core variable, try to refer to something in +Makefile.common + +gnuradio-core/src/lib/utils: + +* Not all *.m files are referenced in Makefile.am for distribution. Is +this correct? + diff --git a/gnuradio-core/Makefile.am b/gnuradio-core/Makefile.am index b4b619b8b..846c59994 100644 --- a/gnuradio-core/Makefile.am +++ b/gnuradio-core/Makefile.am @@ -29,8 +29,5 @@ EXTRA_DIST = \ SUBDIRS = src doc -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = gnuradio-core.pc - etcdir = $(sysconfdir)/gnuradio/conf.d etc_DATA = gnuradio-core.conf diff --git a/gnuradio-core/doc/Makefile.am b/gnuradio-core/doc/Makefile.am index 562b36654..40c910d72 100644 --- a/gnuradio-core/doc/Makefile.am +++ b/gnuradio-core/doc/Makefile.am @@ -54,7 +54,7 @@ prep: install-data-local: $(mkinstalldirs) $(DESTDIR)$(docdir) - @for i in $(top_srcdir)/README $(top_srcdir)/README.hacking $(top_srcdir)/ChangeLog; do \ + @for i in $(top_srcdir)/gnuradio-core/README $(top_srcdir)/gnuradio-core/README.hacking $(top_srcdir)/gnuradio-core/ChangeLog; do \ echo "$(INSTALL_DATA) $$i $(DESTDIR)$(docdir)"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(docdir); \ done diff --git a/gnuradio-core/src/lib/Makefile.am b/gnuradio-core/src/lib/Makefile.am index 2b31b3fce..7d37a4e35 100644 --- a/gnuradio-core/src/lib/Makefile.am +++ b/gnuradio-core/src/lib/Makefile.am @@ -25,7 +25,7 @@ include $(top_srcdir)/Makefile.common # We've got to build . before swig # FIXME add atsc back -SUBDIRS = missing runtime filter general g72x reed-solomon omnithread io . swig +SUBDIRS = missing runtime filter general g72x reed-solomon omnithread io . swig # generate libgnuradio-core.la from the convenience libraries in subdirs @@ -59,4 +59,3 @@ libgnuradio_core_qa_la_LIBADD = \ missing/libmissing.la \ libgnuradio-core.la \ $(CPPUNIT_LIBS) - |