Commit f1ddf16a authored by dimitri's avatar dimitri
Browse files

Release-1.4.7-20060809

parent 3a7dcb4c
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.4.7-20060716
DOXYGEN Version 1.4.7-20060809


Please read the installation section of the manual 
Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.
(http://www.doxygen.org/install.html) for instructions.


--------
--------
Dimitri van Heesch (16 July 2006)
Dimitri van Heesch (09 August 2006)
+1 −0
Original line number Original line Diff line number Diff line
@@ -24,6 +24,7 @@ distclean: clean
	cd addon/doxmlparser/src ; $(MAKE) distclean
	cd addon/doxmlparser/src ; $(MAKE) distclean
	cd addon/doxmlparser/test ; $(MAKE) distclean
	cd addon/doxmlparser/test ; $(MAKE) distclean
	cd addon/doxmlparser/examples/metrics ; $(MAKE) distclean
	cd addon/doxmlparser/examples/metrics ; $(MAKE) distclean
	cd addon/doxyapp ; $(MAKE) distclean
	-rm -f lib/lib*
	-rm -f lib/lib*
	-rm -f bin/doxy*
	-rm -f bin/doxy*
	-rm -f html
	-rm -f html
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.4.7_20060716
DOXYGEN Version 1.4.7_20060809


Please read INSTALL for compilation instructions.
Please read INSTALL for compilation instructions.


@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.


Enjoy,
Enjoy,


Dimitri van Heesch (dimitri@stack.nl) (16 July 2006)
Dimitri van Heesch (dimitri@stack.nl) (09 August 2006)
+17 −0
Original line number Original line Diff line number Diff line

all clean depend: Makefile.doxyapp 
	$(MAKE) -f Makefile.doxyapp $@

distclean: clean
	$(RM) -rf Makefile doxyapp.pro Makefile.doxyapp

tmake:
	$(ENV) $(PERL) $(TMAKE) doxyapp.pro >Makefile.doxyapp

strip:
	strip doxyapp

Makefile.doxyapp: doxyapp.pro
	$(ENV) $(PERL) $(TMAKE) doxyapp.pro >Makefile.doxyapp

install:

addon/doxyapp/README

0 → 100644
+8 −0
Original line number Original line Diff line number Diff line
This directory contains an example of how to use doxygen as 
an "source parsing engine" in an application. It shows how to configure doxygen 
from the application and shows how to run doxygen without generating output, 
and then uses the information about the symbols found in the source code.

Note that if you use this approach your application should be licensed under the GPL.

Loading