X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=Makefile.am;h=b11f39292c2d201fd887c0682c7bc91c19c6512c;hp=9a38cc196e71155e3f16879b5eeb87267e5e1a05;hb=c94e207d82b045677b93df7c89bd0982c59ecbcb;hpb=e3133d2f2c580f76c9da2e7621c74a064f0955c9 diff --git a/Makefile.am b/Makefile.am index 9a38cc1..b11f392 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,42 @@ AUTOMAKE_OPTIONS = foreign -SUBDIRS = src include +SUBDIRS = src include zlint zoom doc -EXTRA_DIST= LICENSE README.txt yaz++-config.in +ACLOCAL_AMFLAGS = -I m4 + +aclocaldir=$(datadir)/aclocal +aclocal_DATA = m4/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 ; cp ChangeLog $(distdir); 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/*.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 &