-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
40 lines (29 loc) · 765 Bytes
/
Copy pathmakefile
File metadata and controls
40 lines (29 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.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-iniExample \
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-iniExample:
dub run --build=release --config=iniExample
run-valueSubstitutionExample:
dub run --build=release --config=valueSubstitutionExample
run-manipulationExample:
dub run --build=release --config=manipulationExample