about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--scramble.scm2
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 9d87ce2..6bb871f 100644 --- a/Makefile +++ b/Makefile
@@ -18,12 +18,12 @@ test: all
18 cd $(BUILD) && \ 18 cd $(BUILD) && \
19 $(TEST_ENV) $(TEST_ENV_EXTRA) \ 19 $(TEST_ENV) $(TEST_ENV_EXTRA) \
20 $(CSI) -setup-mode -s $(TESTS)/run.scm $(NAME) 20 $(CSI) -setup-mode -s $(TESTS)/run.scm $(NAME)
21clean: 21clean:
22 -rm -rf $(BUILD) $(ARTEFACTS) 22 -rm -rf $(BUILD) $(ARTEFACTS)
23install: 23install:
24 chicken-install -s 24 chicken-install -s
25 @-rm -rf $(ARTEFACTS) 25 @-rm -rf $(ARTEFACTS)
26uninstall: 26uninstall:
27 chicken-uninstall -s $(NAME) 27 chicken-uninstall -s $(NAME)
28 28
29# scramble 29# scramble
diff --git a/scramble.scm b/scramble.scm index 8f1ac19..d4f6206 100644 --- a/scramble.scm +++ b/scramble.scm
@@ -125,7 +125,7 @@
125 "@mkdir -p $(BUILD)" 125 "@mkdir -p $(BUILD)"
126 `("$(CSC) $(CSC_OPTIONS)" 126 `("$(CSC) $(CSC_OPTIONS)"
127 ,(if (eq? (car (find-component c)) 'extension) 127 ,(if (eq? (car (find-component c)) 'extension)
128 "$CSC_LIB_OPTIONS" "") 128 "$(CSC_LIB_OPTIONS)" "")
129 "$(CSC_OPTIONS_EXTRA)" 129 "$(CSC_OPTIONS_EXTRA)"
130 "$< -o $@") 130 "$< -o $@")
131 (let ((.import.scm (string-append (->string c) ".import.scm"))) 131 (let ((.import.scm (string-append (->string c) ".import.scm")))