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

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

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

uninstall:
	rm $(DESTDIR)$(PREFIX)/bin/nofetch