From: Marc Cromme Date: Wed, 12 Oct 2005 20:45:56 +0000 (+0000) Subject: added target 'showdox' which launches firefox with doxygen generated HTML X-Git-Tag: YP2.0.0.2~225 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=2a00c5af9a7d64b295de71709ad65f1c1a21154a;p=metaproxy-moved-to-github.git added target 'showdox' which launches firefox with doxygen generated HTML --- diff --git a/Makefile.am b/Makefile.am index 7634b6d..f300b57 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,3 +12,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure .PHONY:dox dox: doxygen + +.PHONY:showdox +showdox: + firefox file://`pwd`/dox/html/index.html & diff --git a/src/Makefile.am b/src/Makefile.am index 042d9d6..42e729f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -## $Id: Makefile.am,v 1.13 2005-10-08 17:28:28 marc Exp $ +## $Id: Makefile.am,v 1.14 2005-10-12 20:45:56 marc Exp $ MAINTAINERCLEANFILES = Makefile.in config.in config.hpp @@ -47,3 +47,6 @@ test_boost_time_LDADD = $(LDADD) -lboost_unit_test_framework # doxygen target dox: (cd $(top_srcdir) ; make dox) + +showdox: + (cd $(top_srcdir) ; make showdox)