Add a sample makefile.

master
Philippe PITTOLI 2024-05-06 14:41:07 +02:00
parent 061e945384
commit 0d0acc8dff
1 changed files with 17 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
all: build
OPTS ?= --progress
Q ?= @
SHOULD_UPDATE = ./bin/should-update
DBDIR=/tmp/tests-on-dodb
benchmark-cars:
$(Q)crystal build spec/benchmark-cars.cr $(OPTS)
build: benchmark-cars
wipe-db:
rm -r $(DBDIR)
release:
make build OPTS="--release --progress"