mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Renamed module
This commit is contained in:
parent
39e0f5c092
commit
2dc3ec1d8e
3 changed files with 5 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -18,8 +18,8 @@ scheme/read.o: cyclone scheme/read.sld
|
|||
scheme/write.o: cyclone scheme/write.sld
|
||||
./cyclone scheme/write.sld
|
||||
|
||||
trans.so: trans.scm
|
||||
csc -s trans.scm
|
||||
transforms.so: transforms.scm
|
||||
csc -s transforms.scm
|
||||
|
||||
cgen.so: cgen.scm
|
||||
csc -s cgen.scm
|
||||
|
@ -50,7 +50,7 @@ debug:
|
|||
debug2: libcyclone.so.1
|
||||
gcc test.c -L. -lcyclone -I. -g -o test
|
||||
|
||||
cyclone: cyclone.scm trans.so cgen.so libraries.so parser.so libcyclone.a
|
||||
cyclone: cyclone.scm transforms.so cgen.so libraries.so parser.so libcyclone.a
|
||||
csc cyclone.scm
|
||||
|
||||
.PHONY: test
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
(require-extension srfi-1) ;; every
|
||||
(load (string-append (cyc:get-lib-dir) "parser.so"))
|
||||
(load (string-append (cyc:get-lib-dir) "libraries.so"))
|
||||
(load (string-append (cyc:get-lib-dir) "trans.so"))
|
||||
(load (string-append (cyc:get-lib-dir) "transforms.so"))
|
||||
(load (string-append (cyc:get-lib-dir) "cgen.so")))
|
||||
; (husk
|
||||
; (import (husk pretty-print))
|
||||
|
@ -27,7 +27,7 @@
|
|||
(else
|
||||
(load (string-append (cyc:get-lib-dir) "parser.scm"))
|
||||
(load (string-append (cyc:get-lib-dir) "libraries.scm"))
|
||||
(load (string-append (cyc:get-lib-dir) "trans.scm"))
|
||||
(load (string-append (cyc:get-lib-dir) "transforms.scm"))
|
||||
(load (string-append (cyc:get-lib-dir) "cgen.scm"))))
|
||||
|
||||
;; Code emission.
|
||||
|
|
Loading…
Add table
Reference in a new issue