13 lines
169 B
Makefile
13 lines
169 B
Makefile
|
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"
|