author | Michael Krelin <hacker@klever.net> | 2005-02-13 21:40:40 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-02-13 21:40:40 (UTC) |
commit | a83335d1c67d37100a018e8ee4fd6c0ff77ac380 (patch) (side-by-side diff) | |
tree | f415c812fdbb3ec516ee4b59096b29fe55e6b135 | |
parent | ee7ac58694c16cdd922a6eeddbe1a2eba0da7b4e (diff) | |
download | konforka-a83335d1c67d37100a018e8ee4fd6c0ff77ac380.zip konforka-a83335d1c67d37100a018e8ee4fd6c0ff77ac380.tar.gz konforka-a83335d1c67d37100a018e8ee4fd6c0ff77ac380.tar.bz2 |
1. added svn:ignore for different autotoolset
2. 'dox' doxygen target excluded from 'all'
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile.am | 17 |
2 files changed, 8 insertions, 11 deletions
@@ -20,3 +20,5 @@ autom4te.cache missing aclocal.m4 install-sh +stamp-h.in +mkinstalldirs diff --git a/Makefile.am b/Makefile.am index c3fef99..aab3c4b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,21 +7,16 @@ pkgconfigdir=@PKGCONFIG_DIR@ pkgconfig_DATA=konforka.pc endif -LOCAL_TARGETS= +all-local: NEWS if HAVE_DOXYGEN -LOCAL_TARGETS+=doxygen +clean-local: + rm -rf doxydox endif -all-local: NEWS $(addprefix all-lota-,${LOCAL_TARGETS}) -clean-local: $(addprefix clean-lota-,${LOCAL_TARGETS}) - NEWS: NEWS.xsl NEWS.xml ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml -all-lota-doxygen: doxydox/built -doxydox/built: $(wildcard ${top_srcdir}/include/konforka/*.h) +if HAVE_DOXYGEN +dox: ${DOXYGEN} - touch $@ - -clean-lota-doxygen: - rm -rf doxydox +endif |