-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest.make
More file actions
60 lines (46 loc) · 716 Bytes
/
Copy pathtest.make
File metadata and controls
60 lines (46 loc) · 716 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
#
#
snow2=/usr/local/bin/snow2
REPOS=-r ../..
all:
link-deps:
snow2 -s $(REPOS) install $(TEST_DEPS)
install-deps:
snow2 $(REPOS) install $(TEST_DEPS)
download-deps:
snow2 install $(TEST_DEPS)
test: link-deps
./test-chibi.scm
@ echo
./test-chicken.scm
@ echo
./test-foment.scm
@ echo
./test-gauche.scm
@ echo
./test-sagittarius.scm
@ echo
test-chibi:
./test-chibi.scm
@ echo
test-chicken:
./test-chicken.scm
@ echo
test-foment:
./test-foment.scm
@ echo
test-gauche:
./test-gauche.scm
@ echo
test-sagittarius:
./test-sagittarius.scm
@ echo
clean:
rm -f *~
# for DEP in $(DEPS) ; do \
# $(snow2) uninstall $(TEST_DEPS); \
# done
rm -rf srfi
rm -rf weinholt
make clean-extra