commit 20259ad5986d5b85b20ac9b0ac337dcb258c37e9 parent ba623b8f20ecc899081be2e2a97de59c8e7f331e Author: Ari Malinen <ari.malinen@gmail.com> Date: Tue, 10 Jun 2014 20:56:22 +0300 added init script Diffstat:
M | Makefile | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -3,12 +3,12 @@ CFLAGS=-O2 -Wall all: dcron install: dcron - mkdir -p ${PREFIX}/bin - install -m 755 dcron ${PREFIX}/bin/ + mkdir -p ${DESTDIR}/bin + install -m 755 dcron ${DESTDIR}/bin/ install -m 755 init.d/dcron /etc/init.d/ uninstall: - rm -f ${PREFIX}/dcron + rm -f ${DESTDIR}/bin/dcron rm /etc/init.d/dcron clean: