diff options
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c18d014 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +#!/bin/sh + +DESTDIR=/usr + +install: + install -m 0755 wnpp-query.py ${DESTDIR}/bin/wnpp-query + +uninstall: + rm -f ${DESTDIR}/bin/wnpp-query |