-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile.am | 17 |
2 files changed, 8 insertions, 11 deletions
@@ -11,12 +11,14 @@ 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 | ||