catala/Makefile

134 lines
3.7 KiB
Makefile
Raw Normal View History

2020-05-13 15:17:19 +03:00
##########################################
# Dependencies
##########################################
2020-04-20 09:35:22 +03:00
2020-05-13 15:53:53 +03:00
EXECUTABLES = man2html virtualenv python3
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(warning [WARNING] No "$(exec)" executable found. \
Please install this executable for everything to work smoothly)))
2020-04-26 19:42:42 +03:00
install-dependencies-ocaml:
2020-04-17 14:02:15 +03:00
opam install \
ocamlformat \
2020-04-17 14:02:15 +03:00
ANSITerminal \
sedlex \
menhir \
menhirLib \
2020-04-26 21:16:03 +03:00
dune dune-build-info \
cmdliner obelisk \
tls cohttp lwt cohttp-lwt-unix yojson\
2020-04-26 13:20:09 +03:00
re reason
2020-04-26 19:42:42 +03:00
init-submodules:
2020-04-17 14:02:15 +03:00
git submodule update --init
install-dependencies: install-dependencies-ocaml init-submodules
2020-05-13 15:17:19 +03:00
##########################################
# Catala compiler rules
##########################################
2020-04-20 09:35:22 +03:00
format:
2020-04-24 20:16:50 +03:00
dune build @fmt --auto-promote | true
2020-04-20 09:35:22 +03:00
build:
$(MAKE) -C src/catala/parsing parser_errors.ml
$(MAKE) format
2020-05-14 22:19:46 +03:00
dune build
2020-04-19 17:30:18 +03:00
2020-04-20 09:35:22 +03:00
install: build
2020-04-16 18:47:35 +03:00
dune build @install
2020-05-13 15:17:19 +03:00
##########################################
2020-04-20 09:35:22 +03:00
# Pygments syntax highilghting rules
2020-05-13 15:17:19 +03:00
##########################################
2020-03-08 05:30:37 +03:00
2020-04-27 10:57:13 +03:00
SYNTAX_HIGHLIGHTING_FR=${CURDIR}/syntax_highlighting/fr
PYGMENTS_DIR_FR=$(SYNTAX_HIGHLIGHTING_FR)/pygments
PYGMENTIZE_FR=$(PYGMENTS_DIR_FR)/pygments/env/bin/pygmentize
2020-04-27 10:57:13 +03:00
SYNTAX_HIGHLIGHTING_EN=${CURDIR}/syntax_highlighting/en
PYGMENTS_DIR_EN=$(SYNTAX_HIGHLIGHTING_EN)/pygments
PYGMENTIZE_EN=$(PYGMENTS_DIR_EN)/pygments/env/bin/pygmentize
2020-05-13 15:37:09 +03:00
$(PYGMENTIZE_FR): $(SYNTAX_HIGHLIGHTING_FR)/set_up_pygments.sh $(PYGMENTS_DIR_FR)/catala_fr.py
chmod +x $<
$<
2020-05-13 15:37:09 +03:00
$(PYGMENTIZE_EN): $(SYNTAX_HIGHLIGHTING_EN)/set_up_pygments.sh $(PYGMENTS_DIR_EN)/catala_en.py
2020-04-19 17:30:18 +03:00
chmod +x $<
$<
pygments: $(PYGMENTIZE_FR) $(PYGMENTIZE_EN)
2020-04-27 10:57:13 +03:00
atom_fr: ${CURDIR}/syntax_highlighting/fr/setup_atom.sh
chmod +x $<
$<
2020-04-20 09:35:22 +03:00
2020-04-27 10:57:13 +03:00
atom_en: ${CURDIR}/syntax_highlighting/en/setup_atom.sh
2020-04-26 21:59:04 +03:00
chmod +x $<
$<
atom: atom_fr atom_en
2020-05-13 15:17:19 +03:00
##########################################
# Examples-related rules
##########################################
EXAMPLES_DIR=examples
ALLOCATIONS_FAMILIALES_DIR=$(EXAMPLES_DIR)/allocations_familiales
2020-04-20 10:07:12 +03:00
ENGLISH_DUMMY_DIR=$(EXAMPLES_DIR)/dummy_english
2020-05-13 15:17:19 +03:00
allocations_familiales: pygments build
$(MAKE) -C $(ALLOCATIONS_FAMILIALES_DIR) allocations_familiales.pdf
2020-05-13 15:17:19 +03:00
allocations_familiales_expired: pygments build
$(MAKE) -C $(ALLOCATIONS_FAMILIALES_DIR) allocations_familiales.expired
2020-05-13 15:17:19 +03:00
english: pygments build
$(MAKE) -C $(ENGLISH_DUMMY_DIR) english.pdf
2020-04-19 17:30:18 +03:00
2020-04-20 09:35:22 +03:00
all_examples: allocations_familiales english
2020-05-13 15:17:19 +03:00
##########################################
# Website assets
##########################################
grammar.html: src/catala/parsing/parser.mly
obelisk html -o $@ $<
2020-05-13 15:37:09 +03:00
GENERATE_MAN_PAGE_ARGS=\
--help=groff | man2html | sed -e '1,8d' \
| tac | sed "1,18d" | tac
2020-05-05 18:04:53 +03:00
catala.html: src/catala/cli.ml
2020-05-13 15:37:09 +03:00
dune exec src/catala.exe -- $(GENERATE_MAN_PAGE_ARGS) > $@
2020-05-05 18:04:53 +03:00
legifrance_catala.html: src/legifrance_catala/main.ml
2020-05-13 15:37:09 +03:00
dune exec src/legifrance_catala.exe -- $(GENERATE_MAN_PAGE_ARGS) > $@
2020-05-05 18:04:53 +03:00
2020-05-13 14:52:20 +03:00
website-assets: build pygments grammar.html catala.html legifrance_catala.html
$(MAKE) -C examples/allocations_familiales allocations_familiales.html
$(MAKE) -C examples/dummy_english english.html
2020-05-13 15:17:19 +03:00
##########################################
# Misceallenous
##########################################
all: install-dependencies install all_examples website-assets
2020-04-20 09:35:22 +03:00
clean:
dune clean
$(MAKE) -C $(ALLOCATIONS_FAMILIALES_DIR) clean
$(MAKE) -C $(ENGLISH_DUMMY_DIR) clean
2020-04-19 17:30:18 +03:00
2020-04-13 19:57:24 +03:00
inspect:
2020-04-16 18:47:35 +03:00
gitinspector -f ml,mli,mly,iro,tex,catala,md,ir --grading
2020-04-20 20:37:16 +03:00
2020-05-13 15:17:19 +03:00
##########################################
2020-04-20 20:37:16 +03:00
# Special targets
2020-05-13 15:17:19 +03:00
##########################################
2020-04-20 20:37:16 +03:00
.PHONY: inspect clean all all_examples english allocations_familiales pygments \
2020-05-13 15:37:09 +03:00
install build format install-dependencies install-dependencies-ocaml \
catala.html legifrance_catala.html