You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/webconference/tools/Makefile

19 lines
441 B

COREPATH_TOOLS ?= ../../../core
COREPATH ?= ../../../core
include $(COREPATH_TOOLS)/../Makefile.defs
wc_scripts = $(wildcard sems-webconference-*)
all: install_tools
install: install_tools
install_tools: $(DESTDIR)$(bin_prefix)/$(bin_dir)
@set -e; \
for r in $(wc_scripts) ; do \
x=`echo $$r | sed s/sems-/$(APP_NAME)-/g` ; \
echo "installing $$r -> $$x" ; \
$(INSTALL_BIN) $$r $(DESTDIR)$(bin_prefix)/$(bin_dir)/$$x ; \
done