diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-08-12 19:02:29 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-08-12 19:02:29 (GMT) |
commit | f6d511e52eb55c5d5b980c4d226f2ea80b396095 (patch) | |
tree | 01f1ea2318cd225fcd6e0c0b7482467e620c881a /src/Makefile.in | |
parent | 34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634 (diff) | |
download | Doxygen-f6d511e52eb55c5d5b980c4d226f2ea80b396095.zip Doxygen-f6d511e52eb55c5d5b980c4d226f2ea80b396095.tar.gz Doxygen-f6d511e52eb55c5d5b980c4d226f2ea80b396095.tar.bz2 |
Some generated files were not updated.
fixed relative path issue when using HTML_EXTRA_STYLESHEET.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index a4e096d..e6a7080 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -33,21 +33,27 @@ tmake: $(ENV) $(PERL) $(TMAKE) libdoxycfg.pro >Makefile.libdoxycfg $(ENV) $(PERL) $(TMAKE) doxygen.pro >Makefile.doxygen +# clean objects clean: Makefile.libdoxygen Makefile.libdoxycfg Makefile.doxygen $(MAKE) -f Makefile.libdoxygen clean $(MAKE) -f Makefile.libdoxycfg clean $(MAKE) -f Makefile.doxygen clean +# also clean flex/bison generated files distclean: clean -$(RM) scanner.cpp code.cpp config.cpp pre.cpp ce_lex.cpp \ ce_parse.cpp ce_parse.h tag.cpp commentscan.cpp \ declinfo.cpp defargs.cpp commentcnv.cpp doctokenizer.cpp \ pycode.cpp pyscanner.cpp fortrancode.cpp fortranscanner.cpp \ vhdlscanner.cpp vhdlcode.cpp tclscanner.cpp vhdlparser.h \ - vhdlparser.cpp index_xsd.h compound_xsd.h layout_default.h \ - header_html.h footer_html.h search_functions_php.h search_opensearch_php.h \ + vhdlparser.cpp \ + +# clean also the generated files which are in SVN +realclean: distclean + -$(RM) index_xsd.h compound_xsd.h layout_default.h \ + header_html.h footer_html.h search_functions_php.h search_opensearch_php.h \ search_js.h search_css.h doxygen_css.h navtree_js.h navindex_js.h resize_js.h \ - jquery_fx_js.h jquery_p1_js.h jquery_p2_js.h \ + jquery_fx_js.h jquery_p1_js.h jquery_p2_js.h \ jquery_p3_js.h jquery_ui_js.h navtree_css.h svgpan_js.h dynsections_js.h \ doxygen_bst.h bib2xhtml.h configoptions.cpp |