-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
82 lines (69 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright (c) 2016 Federico Beffa <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for
# any purpose with or without fee is hereby granted, provided that the
# above copyright notice and this permission notice appear in all
# copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
CHEZ = chez-scheme
INSTALL = install -D -m644
PREFIX = /usr/local
EXEC_PREFIX = ${PREFIX}
BINDIR = ${EXEC_PREFIX}/bin
LIBDIR = ${EXEC_PREFIX}/lib
INCLUDEDIR = ${PREFIX}/include
DATAROOTDIR = ${PREFIX}/share
DATADIR = ${DATAROOTDIR}
MANDIR = ${DATAROOTDIR}/man
INFODIR = ${DATAROOTDIR}/info
chezversion ::= $(shell echo '(call-with-values scheme-version-number (lambda (a b c) (format #t "~d.~d.~d" a b c)))' | ${CHEZ} -q)
schemedir = ${LIBDIR}/csv${chezversion}-site
build:
(cd srfi && $(CHEZ) --program compile-all.chezscheme.ss)
clean:
find srfi -name "*.so" -exec rm {} \;
find srfi -type l -exec rm {} \;
install:
find srfi -type f -regex ".*.so" -exec sh -c '${INSTALL} -t ${schemedir}/$$(dirname $$1) $$1' _ {} \;
cp -rP srfi/:[0-9] ${schemedir}/srfi
cp -rP srfi/:[0-9][0-9] ${schemedir}/srfi
cp -rP srfi/:[0-9]*.so ${schemedir}/srfi
install-src:
find srfi -type f -regex ".*.s\(ls\|cm\)" -exec sh -c '${INSTALL} -t ${schemedir}/$$(dirname $$1) $$1' _ {} \;
cp -rP srfi/:[0-9] ${schemedir}/srfi
cp -rP srfi/:[0-9][0-9] ${schemedir}/srfi
cp -rP srfi/:[0-9]*.sls ${schemedir}/srfi
test:
$(CHEZ) --program srfi/tests/and-let*.sps
$(CHEZ) --program srfi/tests/lists.sps
$(CHEZ) --program srfi/tests/cut.sps
$(CHEZ) --program srfi/tests/intermediate-format-strings.sps
$(CHEZ) --program srfi/tests/multi-dimensional-arrays.sps
$(CHEZ) --program srfi/tests/multi-dimensional-arrays--arlib.sps
$(CHEZ) --program srfi/tests/lightweight-testing.sps
$(CHEZ) --program srfi/tests/random-bits.sps
$(CHEZ) --program srfi/tests/records.sps
$(CHEZ) --program srfi/tests/rec.sps
$(CHEZ) --program srfi/tests/testing.sps
$(CHEZ) --program srfi/tests/vectors.sps
$(CHEZ) --program srfi/tests/eager-comprehensions.sps
$(CHEZ) --program srfi/tests/compare-procedures.sps
# Note that test srfi/tests/lightweight-testing.sps reports failing.
# But this is just to test that if the answer is wrong it does signal
# so.
# Exception in get-environment-variables: not implemented
# $(CHEZ) --program srfi/tests/os-environment-variables.sps
# Exception in cumulative-thread-time: not implemented
# $(CHEZ) --program srfi/tests/time.sps
# This test requires interaction.
# $(CHEZ) --program srfi/tests/lazy.sps
check-schemedir:
echo ${schemedir}