1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
ETC_SCRIPTS = \
qemu-ifup
GLOBAL_SCRIPTS = \
cpuperf-perfcntr \
cpuperf-xen \
xend \
xenperf \
xenstore-chmod \
xenstore-control \
xenstore-exists \
xenstore-list \
xenstore-ls \
xenstore-read \
xenstore-rm \
xenstore-write \
xentop \
xentrace \
xentrace_format \
xentrace_setmask \
xentrace_setsize \
xm
PRIVATE_SCRIPTS = \
xen-utils-version \
$(WRAPPER)
WRAPPER = xen-utils-wrapper
ETC_SCRIPTS_DIR = /etc/xen/scripts
GLOBAL_SCRIPTS_DIR = /usr/sbin
PRIVATE_SCRIPTS_DIR = /usr/lib/xen-common/bin
install:
install -d $(DESTDIR)$(ETC_SCRIPTS_DIR)
install $(ETC_SCRIPTS) $(DESTDIR)$(ETC_SCRIPTS_DIR)
install -d $(DESTDIR)$(GLOBAL_SCRIPTS_DIR)
@for i in $(GLOBAL_SCRIPTS); do \
echo ln -s $(PRIVATE_SCRIPTS_DIR)/$(WRAPPER) $(DESTDIR)$(GLOBAL_SCRIPTS_DIR)/$$i; \
ln -s $(PRIVATE_SCRIPTS_DIR)/$(WRAPPER) $(DESTDIR)$(GLOBAL_SCRIPTS_DIR)/$$i || exit 1; \
done
install -d $(DESTDIR)$(PRIVATE_SCRIPTS_DIR)
install $(PRIVATE_SCRIPTS) $(DESTDIR)$(PRIVATE_SCRIPTS_DIR)
|