catala/Makefile

144 lines
3.9 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-05-26 12:37:01 +03:00
re reason\
obelisk\
ocamlgraph
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-05-23 00:02:48 +03:00
doc: build
dune build @doc
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
CODE_GENERAL_IMPOTS_DIR=$(EXAMPLES_DIR)/code_general_impots
US_TAX_CODE_DIR=$(EXAMPLES_DIR)/us_tax_code
2020-05-17 19:51:00 +03:00
TUTORIAL_DIR=$(EXAMPLES_DIR)/tutorial
2020-05-13 15:17:19 +03:00
allocations_familiales: pygments build
2020-05-26 12:37:01 +03:00
$(MAKE) -C $(ALLOCATIONS_FAMILIALES_DIR) $@.tex
2020-05-17 19:51:00 +03:00
$(MAKE) -C $(ALLOCATIONS_FAMILIALES_DIR) $@.html
code_general_impots: pygments build
2020-07-03 23:15:54 +03:00
$(MAKE) -C $(CODE_GENERAL_IMPOTS_DIR) $@.tex
$(MAKE) -C $(CODE_GENERAL_IMPOTS_DIR) $@.html
us_tax_code: pygments build
2020-05-26 12:37:01 +03:00
$(MAKE) -C $(US_TAX_CODE_DIR) $@.tex
$(MAKE) -C $(US_TAX_CODE_DIR) $@.html
2020-05-17 19:51:00 +03:00
tutorial_en: pygments build
2020-05-26 12:37:01 +03:00
$(MAKE) -C $(TUTORIAL_DIR) $@.tex
2020-05-17 19:51:00 +03:00
$(MAKE) -C $(TUTORIAL_DIR) $@.html
2020-04-19 17:30:18 +03:00
all_examples: allocations_familiales code_general_impots us_tax_code tutorial_en
2020-05-13 15:17:19 +03:00
##########################################
# Website assets
##########################################
grammar.html: src/catala/parsing/parser.mly
obelisk html -o $@ $<
2020-05-05 18:04:53 +03:00
catala.html: src/catala/cli.ml
2020-05-17 19:51:00 +03:00
dune exec src/catala.exe -- --help=groff | man2html | sed -e '1,8d' \
| tac | sed "1,20d" | tac > $@
2020-05-05 18:04:53 +03:00
legifrance_catala.html: src/legifrance_catala/main.ml
2020-05-17 19:51:00 +03:00
dune exec src/legifrance_catala.exe -- --help=groff | man2html | sed -e '1,8d' \
| tac | sed "1,18d" | tac > $@ > $@
2020-05-05 18:04:53 +03:00
2020-05-23 18:39:16 +03:00
website-assets: doc all_examples grammar.html catala.html legifrance_catala.html
2020-05-13 14:52:20 +03:00
2020-05-13 15:17:19 +03:00
##########################################
# Misceallenous
##########################################
2020-05-26 12:37:01 +03:00
all: install-dependencies build doc all_examples website-assets
2020-05-13 15:17:19 +03:00
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