linux/debian/rules.d/tools/hv/Makefile

15 lines
302 B
Makefile

PROGS = \
hv_fcopy_daemon \
hv_kvp_daemon \
hv_vss_daemon
prefix = /usr/sbin
include $(top_rulesdir)/Makefile.inc
install-local-progs: $(PROGS)
@for p in $^; do \
echo " install -m755 '$$p' '$(DESTDIR)/$(prefix)'"; \
install -D -m755 "$$p" "$(DESTDIR)/$(prefix)/$$(basename $$p)"; \
done