13 lines
164 B
Makefile
13 lines
164 B
Makefile
|
|
all: build
|
|
|
|
build: bin/hodler
|
|
|
|
bin/hodler: $(wildcard src/*.cr)
|
|
shards build hodler
|
|
|
|
completion: bin/hodler
|
|
$< --completion --development
|
|
|
|
clean:
|
|
rm bin/hodler
|