1
2
3
4
5
6
7
8
9
|
SHELL=/bin/tcsh -f
help:
@echo ""
@echo "make targets:"
@echo "============="
@echo "install - build and install general_lib egg as icfadm"
@echo "test - run unit tests on ducttape-lib.scm (tests code, not egg)"
@echo "eggs-info - show chicken-install commands to get eggs upon which ducttape-lib depends"
|
<
<
|
1
2
3
4
5
6
7
|
help:
@echo ""
@echo "make targets:"
@echo "============="
@echo "install - build and install general_lib egg as icfadm"
@echo "test - run unit tests on ducttape-lib.scm (tests code, not egg)"
@echo "eggs-info - show chicken-install commands to get eggs upon which ducttape-lib depends"
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
chicken-install
test:
chicken-install -no-install
csc test_ducttape.scm
./test_ducttape
if (-e foo) rm -f foo
test_example:
@csc test_example.scm
@./test_example
@rm test_example
eggs-info:
@echo chicken-install ansi-escape-sequences
@echo chicken-install slice
@echo chicken-install rfc3339
|
|
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
chicken-install
test:
chicken-install -no-install
csc test_ducttape.scm
./test_ducttape
rm -f foo
test_example:
@csc test_example.scm
@./test_example
@rm test_example
eggs-info:
@echo chicken-install ansi-escape-sequences
@echo chicken-install slice
@echo chicken-install rfc3339
|