abandonat en favor del projecte automath.cc
[exercicis-automatics-matematiques.git] / Makefile.old
blobfa9acb9f6fba9bd59219fa71da07c437a26c8f1c
1 # SPDX-FileCopyrightText: 2023 Xavier Bordoy
3 # SPDX-License-Identifier: MIT
5 ERB_FITXERS := $(shell find . -type f -name "*.conTeXt.erb")
6 PDF_FITXERS:= $(ERB_FITXERS:.conTeXt.erb=.pdf)
8 ERB = ./erbf.rb
10 .PHONY: all
12 all: $(PDF_FITXERS) tasques/pendents.md
14 # ERB -> ConTeXt
15 %.conTeXt: %.conTeXt.erb
16         $(ERB) $< > $@
18 # ConTeXt -> PDF
19 %.pdf: %.conTeXt 
20         context  --nonstopmode --noconsole --purgeall $<
22 # tasques
23 tasques/pendents.md: tasques/taskbook/storage/storage.json
24         ./tb2md.py $< > $@