diff options
author | jcorgan | 2006-08-13 01:45:54 +0000 |
---|---|---|
committer | jcorgan | 2006-08-13 01:45:54 +0000 |
commit | 9dfda74b6c7897aff0c3d0b527f93926c0d72c2b (patch) | |
tree | a51051322c8eac854df97fa4dce62c692ebf998a | |
parent | 25ef3e6c556d8f45f7519d22f5f0bccac21b93be (diff) | |
download | gnuradio-9dfda74b6c7897aff0c3d0b527f93926c0d72c2b.tar.gz gnuradio-9dfda74b6c7897aff0c3d0b527f93926c0d72c2b.tar.bz2 gnuradio-9dfda74b6c7897aff0c3d0b527f93926c0d72c2b.zip |
Fixes ticket:8.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3267 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | gnuradio-core/doc/Doxyfile.in | 14 | ||||
-rw-r--r-- | gnuradio-core/doc/Makefile.am | 2 | ||||
-rw-r--r-- | usrp/doc/Doxyfile.in | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/gnuradio-core/doc/Doxyfile.in b/gnuradio-core/doc/Doxyfile.in index 7283a7b2a..7d4e65529 100644 --- a/gnuradio-core/doc/Doxyfile.in +++ b/gnuradio-core/doc/Doxyfile.in @@ -445,9 +445,9 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @top_srcdir@/src/lib \ - @top_srcdir@/src/tests \ - @top_srcdir@/doc/other +INPUT = @top_srcdir@/gnuradio-core/src/lib \ + @top_srcdir@/gnuradio-core/src/tests \ + @top_srcdir@/gnuradio-core/doc/other # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -471,10 +471,10 @@ RECURSIVE = YES # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = CVS \ - @top_srcdir@/src/lib/swig/gnuradio_swig_python.cc \ - @top_srcdir@/src/lib/atsc \ - @top_srcdir@/src/lib/io-orig \ - @top_srcdir@/src/lib/vrx + @top_srcdir@/gnuradio-core/src/lib/swig/gnuradio_swig_python.cc \ + @top_srcdir@/gnuradio-core/src/lib/atsc \ + @top_srcdir@/gnuradio-core/src/lib/io-orig \ + @top_srcdir@/gnuradio-core/src/lib/vrx # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded diff --git a/gnuradio-core/doc/Makefile.am b/gnuradio-core/doc/Makefile.am index 40c910d72..562b36654 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)/gnuradio-core/README $(top_srcdir)/gnuradio-core/README.hacking $(top_srcdir)/gnuradio-core/ChangeLog; do \ + @for i in $(top_srcdir)/README $(top_srcdir)/README.hacking $(top_srcdir)/ChangeLog; do \ echo "$(INSTALL_DATA) $$i $(DESTDIR)$(docdir)"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(docdir); \ done diff --git a/usrp/doc/Doxyfile.in b/usrp/doc/Doxyfile.in index e0533e593..b067838c8 100644 --- a/usrp/doc/Doxyfile.in +++ b/usrp/doc/Doxyfile.in @@ -437,8 +437,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @top_srcdir@/host \ - @top_srcdir@/doc/other +INPUT = @top_srcdir@/usrp/host \ + @top_srcdir@/usrp/doc/other # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -462,7 +462,7 @@ RECURSIVE = YES # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = CVS \ - @top_srcdir@/host/swig + @top_srcdir@/usrp/host/swig # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories # that are symbolic links (a Unix filesystem feature) are excluded from the input. |