code-preloader/Makefile

12 lines
123 B
Makefile
Raw Normal View History

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