initial commit of rabbit port of lambdanative
This commit is contained in:
parent
bad6c7da7e
commit
76fff3d707
5 changed files with 327 additions and 0 deletions
20
rabbit.setup
Normal file
20
rabbit.setup
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
;; -*- Hen -*-
|
||||
|
||||
(define (dynld-name fn)
|
||||
(make-pathname #f fn ##sys#load-dynamic-extension))
|
||||
|
||||
(compile -S -O2 -d0 -I. -s rabbit.scm -j rabbit)
|
||||
(compile -O2 -d0 -s rabbit.import.scm)
|
||||
|
||||
(install-extension
|
||||
|
||||
; Name of your extension:
|
||||
'rabbit
|
||||
|
||||
; Files to install for your extension:
|
||||
`(,(dynld-name "rabbit") ,(dynld-name "rabbit.import") )
|
||||
|
||||
; Assoc list with properties for your extension:
|
||||
`((version 1.0)
|
||||
))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue