diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-03-24 11:51:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-03-24 11:51:51 (GMT) |
commit | deaa34e0c1d990f37fe00e465ac7a22f705904f0 (patch) | |
tree | 8d5749ba8d587d7b753162c524b18f7e7cdf6a0b /examples | |
parent | aacd1557af129e2bff3514169e04168376a2431b (diff) | |
download | Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.zip Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.tar.gz Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.tar.bz2 |
Release-1.8.3.1-20130324
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.in | 58 |
1 files changed, 28 insertions, 30 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in index 26b7c24..33b4cb3 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -38,93 +38,91 @@ clean: memgrp docstring pyexample mux manual dbusxml tclexample class/html/index.html: class.h class.cfg - $(DOXYGEN)/bin/doxygen class.cfg + "$(DOXYGEN)/bin/doxygen" class.cfg define/html/index.html: define.h define.cfg - $(DOXYGEN)/bin/doxygen define.cfg + "$(DOXYGEN)/bin/doxygen" define.cfg enum/html/index.html: enum.h enum.cfg - $(DOXYGEN)/bin/doxygen enum.cfg + "$(DOXYGEN)/bin/doxygen" enum.cfg file/html/index.html: file.h file.cfg - $(DOXYGEN)/bin/doxygen file.cfg + "$(DOXYGEN)/bin/doxygen" file.cfg func/html/index.html: func.h func.cfg - $(DOXYGEN)/bin/doxygen func.cfg + "$(DOXYGEN)/bin/doxygen" func.cfg page/html/index.html: page.doc page.cfg - $(DOXYGEN)/bin/doxygen page.cfg + "$(DOXYGEN)/bin/doxygen" page.cfg relates/html/index.html: relates.cpp relates.cfg - $(DOXYGEN)/bin/doxygen relates.cfg + "$(DOXYGEN)/bin/doxygen" relates.cfg author/html/index.html: author.cpp author.cfg - $(DOXYGEN)/bin/doxygen author.cfg + "$(DOXYGEN)/bin/doxygen" author.cfg par/html/index.html: par.cpp par.cfg - $(DOXYGEN)/bin/doxygen par.cfg + "$(DOXYGEN)/bin/doxygen" par.cfg overload/html/index.html: overload.cpp overload.cfg - $(DOXYGEN)/bin/doxygen overload.cfg + "$(DOXYGEN)/bin/doxygen" overload.cfg example/html/index.html: example.cpp example_test.cpp example.cfg - $(DOXYGEN)/bin/doxygen example.cfg + "$(DOXYGEN)/bin/doxygen" example.cfg include/html/index.html: include.cpp example_test.cpp include.cfg - $(DOXYGEN)/bin/doxygen include.cfg + "$(DOXYGEN)/bin/doxygen" include.cfg qtstyle/html/index.html: qtstyle.cpp qtstyle.cfg - $(DOXYGEN)/bin/doxygen qtstyle.cfg + "$(DOXYGEN)/bin/doxygen" qtstyle.cfg jdstyle/html/index.html: jdstyle.cpp jdstyle.cfg - $(DOXYGEN)/bin/doxygen jdstyle.cfg + "$(DOXYGEN)/bin/doxygen" jdstyle.cfg structcmd/html/index.html: structcmd.h structcmd.cfg - $(DOXYGEN)/bin/doxygen structcmd.cfg + "$(DOXYGEN)/bin/doxygen" structcmd.cfg autolink/html/index.html: autolink.cpp autolink.cfg - $(DOXYGEN)/bin/doxygen autolink.cfg + "$(DOXYGEN)/bin/doxygen" autolink.cfg tag/html/index.html: tag.cpp tag.cfg example/html/index.html - $(DOXYGEN)/bin/doxygen tag.cfg -# sed -e "1,1s#perl#$(PERL)#g" tag/html/installdox >tag/html/installdox.perl -# cd tag/html ; $(PERL) installdox.perl -lexample.tag@../../example/html + "$(DOXYGEN)/bin/doxygen" tag.cfg restypedef/html/index.html: restypedef.cpp restypedef.cfg - $(DOXYGEN)/bin/doxygen restypedef.cfg + "$(DOXYGEN)/bin/doxygen" restypedef.cfg afterdoc/html/index.html: afterdoc.h afterdoc.cfg - $(DOXYGEN)/bin/doxygen afterdoc.cfg + "$(DOXYGEN)/bin/doxygen" afterdoc.cfg template/html/index.html: templ.cpp templ.cfg - $(DOXYGEN)/bin/doxygen templ.cfg + "$(DOXYGEN)/bin/doxygen" templ.cfg group/html/index.html: group.cpp group.cfg - $(DOXYGEN)/bin/doxygen group.cfg + "$(DOXYGEN)/bin/doxygen" group.cfg memgrp/html/index.html: memgrp.cpp memgrp.cfg - $(DOXYGEN)/bin/doxygen memgrp.cfg + "$(DOXYGEN)/bin/doxygen" memgrp.cfg pyexample/html/index.html: pyexample.py pyexample.cfg - $(DOXYGEN)/bin/doxygen pyexample.cfg + "$(DOXYGEN)/bin/doxygen" pyexample.cfg tclexample/html/index.html: tclexample.tcl tclexample.cfg - $(DOXYGEN)/bin/doxygen tclexample.cfg + "$(DOXYGEN)/bin/doxygen" tclexample.cfg mux/html/index.html: mux.vhdl mux.cfg - $(DOXYGEN)/bin/doxygen mux.cfg + "$(DOXYGEN)/bin/doxygen" mux.cfg manual/html/index.html: manual.c manual.cfg - $(DOXYGEN)/bin/doxygen manual.cfg + "$(DOXYGEN)/bin/doxygen" manual.cfg docstring/html/index.html: docstring.py docstring.cfg - $(DOXYGEN)/bin/doxygen docstring.cfg + "$(DOXYGEN)/bin/doxygen" docstring.cfg #dbusxml/html/index.html: dbusxml.xml dbusxml.cfg # $(DOXYGEN)/bin/doxygen dbusxml.cfg diagrams/html/index.html: diagrams_a.h diagrams_b.h diagrams_c.h diagrams_d.h diagrams_e.h diagrams.cfg ifneq ($(HAVE_DOT),) - $(DOXYGEN)/bin/doxygen diagrams.cfg + "$(DOXYGEN)/bin/doxygen" diagrams.cfg endif |