mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-14 20:34:00 +01:00
17 lines
206 B
Makefile
17 lines
206 B
Makefile
|
.PHONY: build
|
||
|
.PHONY: test
|
||
|
.PHONY: clean
|
||
|
|
||
|
build:
|
||
|
dub build --build=release
|
||
|
|
||
|
test:
|
||
|
dub test
|
||
|
|
||
|
clean:
|
||
|
dub clean
|
||
|
|
||
|
run-examples: run-jsonExample
|
||
|
|
||
|
run-jsonExample:
|
||
|
dub run --build=release --config=jsonExample
|