mirage-config/makefile

29 lines
548 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 \
2022-10-08 23:02:25 +02:00
run-javaPropertiesExample \
2022-10-06 23:55:31 +02:00
run-valueSubstitutionExample \
run-manipulationExample
2022-09-25 18:03:26 +02:00
run-jsonExample:
2022-09-28 23:13:20 +02:00
dub run --build=release --config=jsonExample
2022-10-08 23:02:25 +02:00
run-javaPropertiesExample:
dub run --build=release --config=javaPropertiesExample
2022-09-28 23:13:20 +02:00
run-valueSubstitutionExample:
2022-10-06 23:55:31 +02:00
dub run --build=release --config=valueSubstitutionExample
run-manipulationExample:
dub run --build=release --config=manipulationExample