mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-14 20:34:00 +01:00
36 lines
685 B
Makefile
36 lines
685 B
Makefile
.PHONY: build
|
|
.PHONY: test
|
|
.PHONY: clean
|
|
|
|
build:
|
|
dub build --build=release
|
|
|
|
build-docs:
|
|
dub build --build=ddox
|
|
|
|
test:
|
|
dub test
|
|
|
|
clean:
|
|
dub clean
|
|
|
|
run-examples: run-quickstartExample\
|
|
run-jsonExample \
|
|
run-javaPropertiesExample \
|
|
run-valueSubstitutionExample \
|
|
run-manipulationExample
|
|
|
|
run-quickstartExample:
|
|
dub run --build=release --config=quickstartExample
|
|
|
|
run-jsonExample:
|
|
dub run --build=release --config=jsonExample
|
|
|
|
run-javaPropertiesExample:
|
|
dub run --build=release --config=javaPropertiesExample
|
|
|
|
run-valueSubstitutionExample:
|
|
dub run --build=release --config=valueSubstitutionExample
|
|
|
|
run-manipulationExample:
|
|
dub run --build=release --config=manipulationExample
|