code-preloader/Makefile
Glenn Y. Rolland 595cdb8f3a
All checks were successful
continuous-integration/drone/push Build is passing
chore: do not force owner root in install (allow local install)
2024-01-03 18:01:36 +01:00

23 lines
249 B
Makefile

PREFIX=/usr
all: build
prepare:
shards install
build:
shards build --error-trace
spec: test
test:
crystal spec --error-trace
install:
install \
-m 755 \
bin/code-preloader \
$(PREFIX)/bin
.PHONY: spec test build all prepare install