lpcmanager

SVGHMI: Add SuppressBrowserOutput, expected by SVGHMI python3 code in Beremiz.
#! gmake
our_lib_path = $(abspath .)
original_svghmi_path = $(abspath ../../beremiz/svghmi)
our_widgets := $(wildcard *.ysl2)
xsltfiles := gen_index_xhtml.xslt gen_dnd_widget_svg.xslt analyse_widget.xslt
all: $(xsltfiles)
$(xsltfiles): $(our_widgets)
for f in $(xsltfiles); do rm -f $(original_svghmi_path)/$$f; done
YML_PATH=$(original_svghmi_path):$(our_lib_path) $(MAKE) -C $(original_svghmi_path)
for f in $(xsltfiles); do cp $(original_svghmi_path)/$$f $(our_lib_path)/$$f; done