2020-08-11 14:31:22 +04:00
|
|
|
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 $@
|
2020-08-11 14:31:22 +04:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) vendor/*
|
|
|
|
stack clean
|
|
|
|
|
2020-09-11 21:26:51 +04:00
|
|
|
build: grammar
|
2020-08-11 14:31:22 +04:00
|
|
|
stack build $(STACK_DEV_OPTIONS)
|
|
|
|
|
2020-09-11 21:26:51 +04:00
|
|
|
.PHONY: all clean grammar build FORCE
|