beremiz

fix bug with unfinished debug thread

2017-08-28, Surkov Sergey
c2f48d791d9f
fix bug with unfinished debug thread
this bug occurs when user doesn't stop debugging process in current project, and opens another project
#! 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)