11 lines
123 B
Makefile
11 lines
123 B
Makefile
|
|
all: build
|
|
|
|
build:
|
|
shards build --error-trace
|
|
|
|
spec: test
|
|
test:
|
|
crystal spec --error-trace
|
|
|
|
.PHONY: spec test build all
|