From 2a00c5af9a7d64b295de71709ad65f1c1a21154a Mon Sep 17 00:00:00 2001 From: Marc Cromme Date: Wed, 12 Oct 2005 20:45:56 +0000 Subject: [PATCH] added target 'showdox' which launches firefox with doxygen generated HTML --- Makefile.am | 4 ++++ src/Makefile.am | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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) -- 1.7.10.4