mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 03:16:58 +00:00
15 lines
233 B
Makefile
15 lines
233 B
Makefile
|
ifndef PYTHON
|
||
|
PYTHON = C:/Python26/python.exe
|
||
|
endif
|
||
|
|
||
|
RST2HTML = docutils/tools/rst2html.py
|
||
|
|
||
|
default: all
|
||
|
|
||
|
all:
|
||
|
$(PYTHON) $(RST2HTML) --config manual.conf manual.rst > manual.html
|
||
|
$(PYTHON) split.py
|
||
|
|
||
|
clean:
|
||
|
rm *.html
|