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) (unidiff) | |
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
@@ -1,22 +1,24 @@ | |||
1 | configure | 1 | configure |
2 | Makefile.in | 2 | Makefile.in |
3 | Doxyfile | 3 | Doxyfile |
4 | config.log | 4 | config.log |
5 | depcomp | 5 | depcomp |
6 | config.guess | 6 | config.guess |
7 | config.h | 7 | config.h |
8 | ltmain.sh | 8 | ltmain.sh |
9 | config.sub | 9 | config.sub |
10 | INSTALL | 10 | INSTALL |
11 | konforka.pc | 11 | konforka.pc |
12 | NEWS | 12 | NEWS |
13 | Makefile | 13 | Makefile |
14 | config.status | 14 | config.status |
15 | stamp-h1 | 15 | stamp-h1 |
16 | doxydox | 16 | doxydox |
17 | config.h.in | 17 | config.h.in |
18 | libtool | 18 | libtool |
19 | autom4te.cache | 19 | autom4te.cache |
20 | missing | 20 | missing |
21 | aclocal.m4 | 21 | aclocal.m4 |
22 | install-sh | 22 | install-sh |
23 | stamp-h.in | ||
24 | mkinstalldirs | ||
diff --git a/Makefile.am b/Makefile.am index c3fef99..aab3c4b 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -1,27 +1,22 @@ | |||
1 | SUBDIRS=include lib | 1 | SUBDIRS=include lib |
2 | EXTRA_DIST = NEWS NEWS.xml NEWS.xsl | 2 | EXTRA_DIST = NEWS NEWS.xml NEWS.xsl |
3 | 3 | ||
4 | DISTCHECK_CONFIGURE_FLAGS=--with-pkgconfigdir=$${dc_install_base}/lib/pkgconfig | 4 | DISTCHECK_CONFIGURE_FLAGS=--with-pkgconfigdir=$${dc_install_base}/lib/pkgconfig |
5 | if HAVE_PKGCONFIG | 5 | if HAVE_PKGCONFIG |
6 | pkgconfigdir=@PKGCONFIG_DIR@ | 6 | pkgconfigdir=@PKGCONFIG_DIR@ |
7 | pkgconfig_DATA=konforka.pc | 7 | pkgconfig_DATA=konforka.pc |
8 | endif | 8 | endif |
9 | 9 | ||
10 | LOCAL_TARGETS= | 10 | all-local: NEWS |
11 | if HAVE_DOXYGEN | 11 | if HAVE_DOXYGEN |
12 | LOCAL_TARGETS+=doxygen | 12 | clean-local: |
13 | rm -rf doxydox | ||
13 | endif | 14 | endif |
14 | 15 | ||
15 | all-local: NEWS $(addprefix all-lota-,${LOCAL_TARGETS}) | ||
16 | clean-local: $(addprefix clean-lota-,${LOCAL_TARGETS}) | ||
17 | |||
18 | NEWS: NEWS.xsl NEWS.xml | 16 | NEWS: NEWS.xsl NEWS.xml |
19 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml | 17 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml |
20 | 18 | ||
21 | all-lota-doxygen: doxydox/built | 19 | if HAVE_DOXYGEN |
22 | doxydox/built: $(wildcard ${top_srcdir}/include/konforka/*.h) | 20 | dox: |
23 | ${DOXYGEN} | 21 | ${DOXYGEN} |
24 | touch $@ | 22 | endif |
25 | |||
26 | clean-lota-doxygen: | ||
27 | rm -rf doxydox | ||