-rw-r--r-- | Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..5a2a2c7 --- a/dev/null +++ b/Makefile.am | |||
@@ -0,0 +1,22 @@ | |||
1 | SUBDIRS=include lib tools man | ||
2 | EXTRA_DIST= NEWS NEWS.xml NEWS.xsl | ||
3 | |||
4 | DISTCHECK_CONFIGURE_FLAGS=--with-pkgconfigdir=$${dc_install_base}/lib/pkgconfig | ||
5 | if HAVE_PKGCONFIG | ||
6 | pkgconfigdir=@PKGCONFIG_DIR@ | ||
7 | pkgconfig_DATA=midillo.pc | ||
8 | endif | ||
9 | |||
10 | all-local: NEWS | ||
11 | if HAVE_DOXYGEN | ||
12 | clean-local: | ||
13 | rm -rf doxydox | ||
14 | endif | ||
15 | |||
16 | NEWS: NEWS.xsl NEWS.xml | ||
17 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml | ||
18 | |||
19 | if HAVE_DOXYGEN | ||
20 | dox: | ||
21 | ${DOXYGEN} | ||
22 | endif | ||