Random updates.
This commit is contained in:
parent
e13e0c7648
commit
cd47ff6c12
10
Makefile.in
10
Makefile.in
|
@ -657,7 +657,10 @@ loads = $(srcdir)/scsh/let-opt.scm $(srcdir)/scsh/scsh-interfaces.scm \
|
||||||
$(srcdir)/scsh/rx/packages.scm \
|
$(srcdir)/scsh/rx/packages.scm \
|
||||||
$(srcdir)/scsh/rx/cond-package.scm \
|
$(srcdir)/scsh/rx/cond-package.scm \
|
||||||
$(srcdir)/scsh/scsh-package.scm \
|
$(srcdir)/scsh/scsh-package.scm \
|
||||||
$(srcdir)/scsh/stringpack.scm
|
$(srcdir)/scsh/lib/string-pack.scm \
|
||||||
|
$(srcdir)/scsh/lib/list-pack.scm \
|
||||||
|
$(srcdir)/scsh/lib/ccp-pack.scm
|
||||||
|
|
||||||
|
|
||||||
scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
||||||
(echo ",translate =scheme48/ $(srcdir)/"; \
|
(echo ",translate =scheme48/ $(srcdir)/"; \
|
||||||
|
@ -670,6 +673,8 @@ scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
||||||
echo ",load-package scsh"; \
|
echo ",load-package scsh"; \
|
||||||
echo ",load-package scsh-here-string-hax"; \
|
echo ",load-package scsh-here-string-hax"; \
|
||||||
echo ",translate =scheme48/ $(LIB)/"; \
|
echo ",translate =scheme48/ $(LIB)/"; \
|
||||||
|
echo ",load-package list-lib"; \
|
||||||
|
echo ",load-package string-lib"; \
|
||||||
echo ",load-package ccp-lib"; \
|
echo ",load-package ccp-lib"; \
|
||||||
echo ",in scsh-level-0"; \
|
echo ",in scsh-level-0"; \
|
||||||
echo "(%install-scsh-handlers)"; \
|
echo "(%install-scsh-handlers)"; \
|
||||||
|
@ -677,8 +682,7 @@ scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
||||||
echo ",user"; \
|
echo ",user"; \
|
||||||
echo ",open floatnums"; \
|
echo ",open floatnums"; \
|
||||||
echo ",open scsh"; \
|
echo ",open scsh"; \
|
||||||
echo ",open string-lib"; \
|
echo ",open list-lib string-lib ccp-lib"; \
|
||||||
echo ",open ccp-lib"; \
|
|
||||||
echo "(dump-scsh \"scsh/scsh.image\")") \
|
echo "(dump-scsh \"scsh/scsh.image\")") \
|
||||||
| ./$(VM) -o ./$(VM) -h 10000000 -i $(CIG).image
|
| ./$(VM) -o ./$(VM) -h 10000000 -i $(CIG).image
|
||||||
|
|
||||||
|
|
|
@ -436,7 +436,9 @@
|
||||||
|
|
||||||
|
|
||||||
(define-interface scsh-string-interface
|
(define-interface scsh-string-interface
|
||||||
(export substitute-env-vars string-index string-index-right))
|
(export substitute-env-vars
|
||||||
|
;string-index string-index-right ; Now in string-lib
|
||||||
|
))
|
||||||
|
|
||||||
(define-interface scsh-file-names-interface
|
(define-interface scsh-file-names-interface
|
||||||
(export file-name-as-directory
|
(export file-name-as-directory
|
||||||
|
|
Loading…
Reference in New Issue