ligo/tools/lsp/squirrel/Makefile

21 lines
276 B
Makefile
Raw Normal View History

PACKAGE := squirrel
STACK_DEV_OPTIONS = --fast --ghc-options -Wwarn --file-watch
.DEFAULT_GOAL := all
all: build
FORCE:
2020-09-11 21:26:51 +04:00
grammar: ; $(MAKE) -C $@
clean:
$(RM) vendor/*
stack clean
2020-09-11 21:26:51 +04:00
build: grammar
stack build $(STACK_DEV_OPTIONS)
2020-09-11 21:26:51 +04:00
.PHONY: all clean grammar build FORCE