summary refs log tree commit diff stats
path: root/Makefile
blob: bb1524a04bb0d84628a75196f710f0526ab49627 (plain)
1
2
3
4
5
6
7
8
9
10
11
PREFIX ?= /usr/local

qotd: qotd.scm
	csc $< -o $@

.PHONY: install uninstall
install: qotd
	install -D $< $(PREFIX)/bin/$<

uninstall:
	rm -f $(PREFIX)/bin/$<