about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9ad68f6 --- /dev/null +++ b/Makefile
@@ -0,0 +1,11 @@
1PREFIX = /usr/local/
2
3nofetch: nofetch.scm
4 csc $< -o $@
5
6.PHONY: install uninstall
7install: nofetch
8 install -D $< $(DESTDIR)$(PREFIX)/bin/$<
9
10uninstall:
11 rm $(DESTDIR)$(PREFIX)/bin/nofetch