aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile
blob: bf51ce77e41f7be616ea3cd0febca23f882a35d8 (plain)
1
2
3
4
5
6
7
8
9
all: synthesis

synthesis: synthesis-results.scm
	chicken-csc -static -o $@ $<

install: synthesis
	install -s $< ~/.local/bin

.PHONY: all install