mirage-config/makefile

21 lines
328 B
Makefile
Raw Normal View History

2022-09-25 18:03:26 +02:00
.PHONY: build
.PHONY: test
.PHONY: clean
build:
dub build --build=release
test:
dub test
clean:
dub clean
run-examples: run-jsonExample \
run-valueSubstitutionExample
2022-09-25 18:03:26 +02:00
run-jsonExample:
2022-09-28 23:13:20 +02:00
dub run --build=release --config=jsonExample
run-valueSubstitutionExample:
dub run --build=release --config=valueSubstitutionExample