X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=Makefile.am;h=b11f39292c2d201fd887c0682c7bc91c19c6512c;hp=1dff0ce8fe3e470b593d6ee2508008c40a8cc9fe;hb=c94e207d82b045677b93df7c89bd0982c59ecbcb;hpb=9defb14486e9d0fa4c74e420912eac62cc2b99af diff --git a/Makefile.am b/Makefile.am index 1dff0ce..b11f392 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,42 @@ AUTOMAKE_OPTIONS = foreign -SUBDIRS = src include zoom lib doc +SUBDIRS = src include zlint zoom doc -EXTRA_DIST= LICENSE README.txt ChangeLog 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 &