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