beremiz
Clone
Summary
Browse
Changes
Graph
add check of new project path in Save As
2016-12-14, Sergey Surkov
99a02c6161b6
add check of new project path in Save As
add dialog window if selected directory is the current directory project, or already contains 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)