Setup with chicken-install instead of makefile.

master
thintz 12 years ago
parent ebaf6763e3
commit 27563113d9

@ -0,0 +1,6 @@
;;; hiss.meta -*- scheme -*-
((egg "hiss.egg")
(synopsis "hiss is a chicken scheme shell.")
(license "BSD")
(depends readline))

@ -1,5 +1,5 @@
;;; documentation at http://thintz.com/chicken-scheme-shell ;;; documentation at http://thintz.com/chicken-scheme-shell
(use readline symbol-utils srfi-1) (use readline srfi-1)
(include "macros.scm") (include "macros.scm")
(define (getenv2 e) (define (getenv2 e)

@ -0,0 +1,7 @@
;;; hiss.setup -*- scheme -*-
(compile -S -O3 -d1 hiss.scm -o hiss)
(install-program 'hiss
'("hiss")
`((version "2")))

@ -1,8 +0,0 @@
# Makefile for Chicken-scheme shell
cscsh: shell.scm
csc shell.scm -compile-syntax -o hiss
.PHONY: clean
clean:
rm -f hiss
Loading…
Cancel
Save