Branch: refs/heads/master Author: Nick Treleaven nick.treleaven@btinternet.com Committer: Nick Treleaven nick.treleaven@btinternet.com Date: Mon, 28 Apr 2014 11:07:13 UTC Commit: d65c5d107e27079e0e11e92d1182a499ea77245a https://github.com/geany/geany/commit/d65c5d107e27079e0e11e92d1182a499ea7724...
Log Message: ----------- Replace autoconf directory variables with sed (Windows makefile)
Modified Paths: -------------- doc/makefile.win32
Modified: doc/makefile.win32 5 lines changed, 4 insertions(+), 1 deletions(-) =================================================================== @@ -5,6 +5,7 @@ # Use localwin32.mk to override RST2HTML, DOXYGEN
RST2HTML=python rst2html.py +SED=sed DOXYGEN=doxygen CP = copy /y -include ../localwin32.mk @@ -19,9 +20,11 @@ doc: geany.txt hacking-doc: ../HACKING $(RST2HTML) -stg --stylesheet=geany.css $^ hacking.html
-# FIXME: we should also replace anything like @VERSION@ +# FIXME: we should also replace @VERSION@ Doxyfile: Doxyfile.in $(CP) $< $@ + $(SED) -i 's/@top_builddir@/../g' $@ + $(SED) -i 's/@top_srcdir@/../g' $@
api-doc: Doxyfile $(DOXYGEN)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).