mirage-config/makefile
2022-10-07 00:57:43 +03:00

25 lines
435 B
Makefile

.PHONY: build
.PHONY: test
.PHONY: clean
build:
dub build --build=release
test:
dub test
clean:
dub clean
run-examples: run-jsonExample \
run-valueSubstitutionExample \
run-manipulationExample
run-jsonExample:
dub run --build=release --config=jsonExample
run-valueSubstitutionExample:
dub run --build=release --config=valueSubstitutionExample
run-manipulationExample:
dub run --build=release --config=manipulationExample