mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-24 02:02:17 -05:00
17 lines
361 B
Makefile
17 lines
361 B
Makefile
.PHONY: default clean tarball
|
|
|
|
core = client ocr
|
|
|
|
all:
|
|
@python docgen.py `echo $(core) | sed -r \
|
|
's/(\w+)/..\/Units\/MMLCore\/\1.pas/g'` > /dev/null
|
|
@make -C sphinx/ html
|
|
|
|
clean:
|
|
@rm -f `echo $(core) | sed -r 's/(\w+)/sphinx\/\1.rst/g'`
|
|
@make -C sphinx/ clean
|
|
|
|
tarball:
|
|
@$(MAKE) all
|
|
@tar cjf doc.tar.bz2 -C sphinx/_build/ html
|