diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-11-10 13:13:42 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-11-10 13:13:42 +0100 |
commit | 8ae231983f3c22c0f1182a4a83107ef4b7822b4a (patch) | |
tree | 92b5a16bf20efc21798d0044745745847bdbf7e0 | |
parent | 764761010a4fd53d6a8f7e8b7c5d80f132baa03e (diff) |
Added Makefile
-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 |