mirage-config/makefile
2022-09-29 00:13:20 +03:00

20 lines
296 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
run-valueSubstitutionExample:
dub run --build=release --config=valueSubstitutionExample