mirage-config/makefile

33 lines
648 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
2022-10-08 23:42:15 +02:00
run-examples: run-quickstartExample\
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
2022-10-08 23:42:15 +02:00
run-quickstartExample:
dub run --build=release --config=quickstartExample
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