-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
68 lines (53 loc) · 1.26 KB
/
Makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
all:
dub build
doc:
dub build -b ddox
test: clean test-clean test-build test-unittest test-runnable
test-clean: test-clean-doc test-clean-pyc test-clean-timers
./tests/runnable/process-tests.py --clean
test-clean-doc:
cd tests/runnable/doc ; make clean
test-clean-pyc:
cd tests/runnable/dlbct ; make clean
test-clean-timers:
./tests/runnable/process-tests.py --timers-clean
test-build:
./tests/travis-ci/build-configurations.sh dmd
./tests/travis-ci/build-configurations.sh ldc2
test-doc: test-plot
cd tests/runnable/doc ; make
test-plot:
./tests/runnable/process-tests.py --plot-reference
test-unittest:
./tests/travis-ci/unittest-coverage.sh dmd
test-runnable:
./tests/runnable/process-tests.py
clean-all: clean test-clean
clean: clean-doc
rm -f src/dlbc/revision.d
rm -f src/dlbc/plugins/plist.d
rm -f *.gcda
rm -f *.gcno
rm -f src/*.o
rm -f src/*~
rm -f src/dlbc/*.o
rm -f src/dlbc/*~
rm -f src/dlbc/field/*.o
rm -f src/dlbc/field/*~
rm -f src/dlbc/io/*.o
rm -f src/dlbc/io/*~
rm -f src/dlbc/lb/*.o
rm -f src/dlbc/lb/*~
rm -f unstandard/unstd/*.o
rm -f unstandard/*.a
rm -rf unstandard/.dub
rm -f dlbc-*
rm -f dlbc-*.o
rm -f *.lst
rm -f *.log
rm -f *~
rm -rf .dub
rm -f dub.selections.json
clean-doc:
rm -f docs.json
rm -rf docs/