about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-05-02 20:57:18 -0500
committerCase Duckworth2020-05-02 20:57:18 -0500
commit743f652932c0fb80981a1dbff4c3802d1ee36243 (patch)
tree661552b35ec213d23ce8658a6b147d9c566eb313
parentPortabalize (diff)
downloadlicensor-743f652932c0fb80981a1dbff4c3802d1ee36243.tar.gz
licensor-743f652932c0fb80981a1dbff4c3802d1ee36243.zip
Add Makefile
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ac4fc9c --- /dev/null +++ b/Makefile
@@ -0,0 +1,15 @@
1# licenser
2
3PREFIX ?= /usr
4
5.PHONY: def install uninstall
6
7def:
8 @echo "run make install to install"
9 @echo "run make uninstall to uninstall"
10
11install: licenser
12 install -D $< $(DESTDIR)$(PREFIX)/bin
13
14uninstall:
15 rm -f $(DESTDIR)$(PREFIX)/bin/licenser