Add UI elements to control single-line regex settings
[geany-mirror.git] / doc / makefile.win32
blob5a77be9398fbd79ceefca4b53cf4fb69555b253b
1 # Optional documentation generation.
2 # localwin32.mk is an optional file to override make variables.
3 # Use localwin32.mk instead of editing variables as it is included in sub
4 # makefiles.
5 # Use localwin32.mk to override RST2HTML, DOXYGEN
7 RST2HTML=python rst2html.py
8 SED=sed
9 DOXYGEN=doxygen
10 CP = copy /y
11 -include ../localwin32.mk
13 ifdef MSYS
14 CP = cp
15 endif
17 doc: geany.txt
18         $(RST2HTML) -stg --stylesheet=geany.css $^ geany.html
20 hacking-doc: ../HACKING
21         $(RST2HTML) -stg --stylesheet=geany.css $^ hacking.html
23 # FIXME: we should also replace @VERSION@
24 Doxyfile: Doxyfile.in
25         $(CP) $< $@
26         $(SED) -i 's/@top_builddir@/../g' $@
27         $(SED) -i 's/@top_srcdir@/../g' $@
29 api-doc: Doxyfile
30         $(DOXYGEN)