diff options
| author | Seth Flynn <[email protected]> | 2021-01-18 10:59:59 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2021-01-18 11:58:05 -0500 |
| commit | 257e8a3c13c55ecc2806cfaf0af1839ff4d04928 (patch) | |
| tree | 938718a0fa5f8b67e8f3648d803c60e2e82222a4 /Makefile | |
| parent | 7e91afcf119f99bac8f97f818f6156c81631bc8e (diff) | |
initial commit of binaryv0.1.0
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8ec32ac --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +PREFIX ?= $(HOME)/.local + +all: + @echo "run 'make install' to install." + +install: + @install -Dm755 aur-update $(DESTDIR)$(PREFIX)/bin/aur-update + +uninstall: + @rm -rf $(DESTDIR)$(PREFIX)/bin/aur-update |
