beremiz
Clone
Summary
Browse
Changes
Graph
fix non-working logging at first connection to PLC after Beremiz launch
2016-09-09, Andrey Skvortsov
70fc5688741e
fix non-working logging at first connection to PLC after Beremiz launch
At the same time this helps to avoid exception described in 1484:d5efbb20927e.
#! gmake
yml := ../../yml2
ysl2files := $(wildcard *.ysl2)
xsltfiles := $(patsubst %.ysl2, %.xslt, $(ysl2files))
all:$(xsltfiles)
%.xslt: %.ysl2
$(yml)/yml2c -I $(yml) $< -o $@.tmp
xmlstarlet fo $@.tmp > $@
rm $@.tmp
clean:
rm -f $(xsltfiles)