File: Makefile

package info (click to toggle)
guile-hoot 0.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,184 kB
  • sloc: lisp: 46,147; javascript: 1,351; makefile: 318; sh: 12
file content (13 lines) | stat: -rw-r--r-- 260 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
repl.wasm: repl.scm Makefile
	../../pre-inst-env guild compile-wasm -g1 -o $@ $<

run-guile: repl.wasm
	../../pre-inst-env guile --no-auto-compile boot-repl.scm

run-node: repl.wasm
	node boot-repl.js

clean:
	rm -f repl.wasm

.PHONY: clean run-guile run-node