RevolutionSociale/Makefile

25 lines
417 B
Makefile

NAME=revolution_sociale
all: deps_opt build
run:
crystal run src/$(NAME).cr --error-trace
build:
crystal build src/$(NAME).cr --stats --error-trace
release:
crystal build src/$(NAME).cr --stats --release
test:
crystal spec
deps:
shards install
deps_update:
shards update
deps_opt:
@[ -d lib/ ] || make deps
doc:
crystal docs
clean:
rm $(NAME)
.PHONY: all run build release test deps deps_update clean doc