Add a makefile.

master
Philippe PITTOLI 2024-06-22 01:18:27 +02:00
parent 405647a24c
commit 0a3a72a5fc
1 changed files with 12 additions and 0 deletions

12
makefile Normal file
View File

@ -0,0 +1,12 @@
all: build
OPTS ?= --progress
Q ?= @
bin/ipcd: src/ipcd.cr
$(Q)shards build $(OPTS)
build: bin/ipcd
release:
$(Q)make build OPTS="--release --progress --no-debug"