about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-07-18 16:39:04 -0500
committerCase Duckworth2022-07-18 16:39:04 -0500
commit8c072c1815172d2a3cf5a5318be7bed0135a0ffc (patch)
tree4a53d9a4cec038122d5823a6760e5ec5f231fb5e
parentInitial commit (diff)
downloadnofetch-8c072c1815172d2a3cf5a5318be7bed0135a0ffc.tar.gz
nofetch-8c072c1815172d2a3cf5a5318be7bed0135a0ffc.zip
Add Makefile
-rw-r--r--.gitignore1
-rw-r--r--Makefile11
2 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e560de5 --- /dev/null +++ b/.gitignore
@@ -0,0 +1 @@
nofetch
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