SOF/Makefile

11 lines
157 B
Makefile
Raw Permalink Normal View History

all: sof
SCHEME = chez
sof:
rm -rf bin
mkdir -p bin
echo '(make-boot-file "sof.boot" (quote ("petite")) "src/main.ss")' | $(SCHEME) -q
.PHONY: all sof