-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
57 lines (38 loc) · 892 Bytes
/
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
.PHONY: toolchain rust python cmake autotools golang fortran ruby perl nodejs runtime ada tools makepkg libtool gettext keyring clean
all: toolchain rust python cmake autotools golang fortran ruby perl nodejs runtime ada tools makepkg libtool gettext keyring clean
toolchain:
(cd toolchain && ./test.sh)
rust:
(cd rust && ./test.sh)
python:
(cd python && ./test.sh)
cmake:
(cd cmake && ./test.sh)
autotools:
$(MAKE) -C autotools
golang:
(cd golang && ./test.sh)
fortran:
(cd fortran && ./test.sh)
ruby:
(cd ruby && ./test.sh)
perl:
(cd perl && ./test.sh)
nodejs:
(cd nodejs && ./test.sh)
runtime:
(cd runtime && ./test.sh)
ada:
(cd ada && ./test.sh)
tools:
(cd tools && ./test.sh)
makepkg:
(cd makepkg && ./test.sh)
libtool:
(cd libtool && ./test.sh)
gettext:
(cd gettext && ./test.sh)
keyring:
(cd keyring && ./test.sh)
clean:
$(MAKE) -C autotools clean