ocaml
Version:
OCaml compiler packaged for esy
57 lines (41 loc) • 1.17 kB
Plain Text
all: tools manual tests
# The tools and the tests are rebuilt each time in order to avoid issues with
# different compiler versions
tests: manual
$(MAKE) -C tests clean
$(MAKE) -C tests all
tools:
$(MAKE) -C tools clean
$(MAKE) -C tools all
$(MAKE) -C tests tools
manual: tools
$(MAKE) -C src all
pdf: tools
$(MAKE) -C src pdf
@echo "The generated manual is at ./src/texstuff/manual.pdf"
html: tools
$(MAKE) -C src html
@echo "The generated manual is at ./src/htmlman/index.html"
web: tools
$(MAKE) -C src web
release:
$(MAKE) -C src release
# The pregen-etex target generates the latex files from the .etex
# files to ensure that this phase of the manual build process, which
# may execute OCaml fragments and expect certain outputs, is correct
pregen-etex: tools
$(MAKE) -C src etex-files
# pregen builds both .etex files and the documentation of the standard library
pregen: tools
$(MAKE) -C src files
clean:
$(MAKE) -C src clean
$(MAKE) -C tools clean
$(MAKE) -C tests clean
distclean: clean
$(MAKE) -C src distclean
$(MAKE) -C tools distclean
$(MAKE) -C tests distclean