From eaf2cc11c3dd21fdf2263ee0807de7ce1c8d2871 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sat, 7 Jun 2014 11:31:58 +0200 Subject: [PATCH] Makefile for installing --- Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index cc511b8..d7b53e0 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,11 @@ DESTDIR=/usr +prefix := ${DESTDIR}/sbin/ +progs := zb-cleanup zb-pull zb-snap +targets := $(foreach prog, $(progs), $(prefix)$(prog) ) -install: - cp zb-cleanup ${DESTDIR}/bin/zb-cleanup - cp zb-pull ${DESTDIR}/bin/zb-pull - cp zb-snap ${DESTDIR}/bin/zb-snap - cp zb-cron ${DESTDIR}/bin/zb-cron +$(prefix)zb-% : zb-% + install ${INSTALL_FLAGS} $< $@ + +install: $(targets)