1AUTOMAKE_OPTIONS = foreign
2
3SUBDIRS = src include zlint zoom doc
4
5ACLOCAL_AMFLAGS = -I m4
6
7aclocaldir=$(datadir)/aclocal
8aclocal_DATA = m4/yazpp.m4
9
10SPEC_FILE=$(PACKAGE).spec
11EXTRA_DIST= $(SPEC_FILE) IDMETA README LICENSE NEWS m4/id-config.sh \
12	yazpp-config.in m4/yaz.m4 m4/yazpp.m4 buildconf.sh Doxyfile.in
13
14dist-hook:
15	if test -x /usr/bin/git -a -d .git; then git log >ChangeLog ; cp ChangeLog $(distdir); fi
16	mkdir $(distdir)/win
17	cp $(srcdir)/win/makefile $(distdir)/win/
18
19
20# doxygen target
21.PHONY:dox
22dox:
23	doxygen
24
25