summaryrefslogtreecommitdiff
path: root/src/scheme/test
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-01-04 02:28:13 -0800
committerKeith Packard <keithp@keithp.com>2018-01-04 02:28:13 -0800
commit0d9a3e0378f84ffc8447747150066eae33cd3229 (patch)
tree85c5b7784e02073737e227c89fd35e825003bee4 /src/scheme/test
parentd34f01110d8770ac99556901143a54c3d492cde0 (diff)
altos/scheme: Add vector and string funcs. Test everybody.
Add a bunch of string and vector functions from r7rs. I think most everything is here now. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/scheme/test')
-rw-r--r--src/scheme/test/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/scheme/test/Makefile b/src/scheme/test/Makefile
index ee46118e..8858f0f6 100644
--- a/src/scheme/test/Makefile
+++ b/src/scheme/test/Makefile
@@ -3,6 +3,8 @@ include ../Makefile-inc
vpath %.o .
vpath %.c ..
vpath %.h ..
+vpath %.scheme ..
+vpath ao_scheme_make_const ../make-const
SRCS=$(SCHEME_SRCS) ao_scheme_test.c
HDRS=$(SCHEME_HDRS) ao_scheme_const.h
@@ -20,8 +22,8 @@ ao-scheme: $(OBJS)
$(OBJS): $(HDRS)
-ao_scheme_const.h: ../make-const/ao_scheme_make_const ../ao_scheme_const.scheme
- ../make-const/ao_scheme_make_const -o $@ ../ao_scheme_const.scheme
+ao_scheme_const.h: ao_scheme_make_const $(SCHEME_SCHEME)
+ $^ -o $@
clean::
rm -f $(OBJS) ao-scheme ao_scheme_const.h