code-preloader/Makefile

12 lines
123 B
Makefile
Raw Normal View History

2023-12-29 13:13:20 +00:00
all: build
build:
2023-12-29 13:57:11 +00:00
shards build --error-trace
2024-01-02 11:32:27 +00:00
spec: test
test:
crystal spec --error-trace
.PHONY: spec test build all