diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-02 20:21:10 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-02 20:21:10 -0400 |
commit | 3339d69d17a921df80f2e007bc56d747d81c3eff (patch) | |
tree | 839100f0f4554a5ab7f8723e1f0a763dbc12b32d | |
parent | 9261f56639ff31129380eab0135d1b5101d23be7 (diff) | |
download | fork-ledger-3339d69d17a921df80f2e007bc56d747d81c3eff.tar.gz fork-ledger-3339d69d17a921df80f2e007bc56d747d81c3eff.tar.bz2 fork-ledger-3339d69d17a921df80f2e007bc56d747d81c3eff.zip |
Made use of the all_files macros in Makefile.am.
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index c0534a0a..bef91b47 100644 --- a/Makefile.am +++ b/Makefile.am @@ -227,10 +227,10 @@ all_sources = $(libledger_util_la_SOURCES) \ all_files = $(all_sources) $(pkginclude_HEADERS) -TAGS: $(all_sources) $(pkginclude_HEADERS) +TAGS: $(all_files) BUILD_DIR=`cd $(top_builddir); pwd`; \ (cd $(srcdir); \ - etags -l c++ -o $$BUILD_DIR/TAGS $(all_sources) $(pkginclude_HEADERS)) + etags -l c++ -o $$BUILD_DIR/TAGS $(all_files)) @echo TAGS rebuilt. ###################################################################### @@ -503,8 +503,7 @@ $(top_builddir)/Doxyfile.gen: $(srcdir)/doc/Doxyfile | sed "s/%srcdir%/$(ESC_srcdir)/g" \ | sed "s/%builddir%/$(ESC_top_builddir)/g" > $@ -$(top_builddir)/doc/html/index.html: $(top_builddir)/Doxyfile.gen \ - $(all_sources) $(pkginclude_HEADERS) +$(top_builddir)/doc/html/index.html: $(top_builddir)/Doxyfile.gen $(all_files) BUILD_DIR=`cd $(top_builddir); pwd`; \ (cd $(srcdir); doxygen $$BUILD_DIR/Doxyfile.gen) |