X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=Makefile.am;h=24db6f1a224440bb5be3ed0c2ad034408a929ee0;hp=b5b93c27054c9328075de4113fe723979ea94cbe;hb=7f3202af2491642a5565e1394505c8dc0f50e4f1;hpb=1cf6fe9c2c71f22ad5b0fbcbec8687958dd68be0 diff --git a/Makefile.am b/Makefile.am index b5b93c2..24db6f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,12 +10,33 @@ aclocal_DATA = m4/yazpp.m4 EXTRA_DIST= LICENSE TODO yazpp-config.in m4/yaz.m4 m4/yazpp.m4 buildconf.sh dist-hook: + if test -x /usr/bin/git -a -d .git; then git log >ChangeLog ; 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/postinst $(distdir)/debian - cp $(srcdir)/debian/compat $(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 &