churf/Justfile
2023-03-27 13:40:18 +02:00

18 lines
335 B
Makefile

# build from scratch
build:
bnfc -o src -d Grammar.cf
cabal install --installdir=. --overwrite-policy=always
# clean the generated directories
clean:
rm -r src/Grammar
rm language
rm -r dist-newstyle/
# run all tests
test:
cabal test
# compile a specific file
run FILE:
cabal run language -- -d {{FILE}}