X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=Makefile.am;h=e489842ef19a92d3b9287cee6dc81e2913fc5a32;hp=a7d9a15b3174b83655a0883b86eb716f2e52dfce;hb=94f2358388fa1d1f188ef672ec9ee6acfa131c0e;hpb=0e5966272921cc8253e4395fcf985d490f27de0b diff --git a/Makefile.am b/Makefile.am index a7d9a15..e489842 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,18 +1,43 @@ AUTOMAKE_OPTIONS = foreign -SUBDIRS = src include zlint zoom etc doc +SUBDIRS = src include zlint zoom doc + +ACLOCAL_AMFLAGS = -I m4 aclocaldir=$(datadir)/aclocal -aclocal_DATA = yazpp.m4 +aclocal_DATA = m4/yazpp.m4 -EXTRA_DIST= LICENSE README.txt TODO ChangeLog yaz++-config.in yazpp.m4 +EXTRA_DIST= LICENSE TODO yazpp-config.in m4/yaz.m4 m4/yazpp.m4 buildconf.sh dist-hook: - cp -R $(srcdir)/win $(distdir) + if test -x /usr/bin/cvs2cl -a -d CVS; then cvs2cl ; fi + mkdir $(distdir)/win + cp $(srcdir)/win/makefile $(distdir)/win/ mkdir $(distdir)/debian cp $(srcdir)/debian/control $(distdir)/debian cp $(srcdir)/debian/changelog $(distdir)/debian cp $(srcdir)/debian/rules $(distdir)/debian - cp $(srcdir)/debian/postinst $(distdir)/debian - cp $(srcdir)/debian/compat $(distdir)/debian + cp $(srcdir)/debian/*.postinst $(distdir)/debian cp $(srcdir)/debian/*.install $(distdir)/debian + + +# doxygen target +.PHONY:dox +dox: + doxygen + +.PHONY:firefox +firefox: + firefox -new-window file://`pwd`/dox/html/index.html & + +.PHONY:konqueror +konqueror: + konqueror file://`pwd`/dox/html/index.html & + +.PHONY:galeon +galeon: + galeon file://`pwd`/dox/html/index.html & + +.PHONY:epiphany +epiphany: + epiphany --new-window file://`pwd`/dox/html/index.html &