mirror of
https://github.com/mbierlee/mirage-injector.git
synced 2024-11-14 21:04:00 +01:00
18 lines
224 B
Makefile
18 lines
224 B
Makefile
.PHONY: build
|
|
.PHONY: test
|
|
.PHONY: clean
|
|
|
|
build:
|
|
dub build --build=release
|
|
|
|
build-docs:
|
|
dub build --build=ddox
|
|
|
|
test:
|
|
dub test
|
|
|
|
clean:
|
|
dub clean
|
|
|
|
run-quickstartExample:
|
|
dub run --build=release --config=quickstartExample
|