diff --git a/src/Makefile b/src/Makefile index d42d9ed..b90246e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,8 +1,8 @@ -all: ikarus.fasl +all: ikarus.boot -ikarus.fasl: - echo '(load "compiler-6.9.ss")' | petite +ikarus.boot: *.ss + echo '(load "makefile.ss")' | ../runtime/ikarus ikarus.boot clean: rm -f *.fasl diff --git a/src/ikarus.fasl b/src/ikarus.boot similarity index 99% rename from src/ikarus.fasl rename to src/ikarus.boot index 9a51e89..eba0775 100644 Binary files a/src/ikarus.fasl and b/src/ikarus.boot differ diff --git a/src/compiler-9.2.ss b/src/makefile.ss similarity index 99% rename from src/compiler-9.2.ss rename to src/makefile.ss index 8aebc81..dcd206b 100644 --- a/src/compiler-9.2.ss +++ b/src/makefile.ss @@ -297,5 +297,5 @@ (system - (format "cat ~a > ikarus.fasl" + (format "cat ~a > ikarus.boot" (join " " (map caddr scheme-library-files))))