jotdown/tests/html-ut/Makefile

25 lines
508 B
Makefile
Raw Normal View History

2022-11-12 12:46:13 -05:00
.POSIX:
.SUFFIXES: .test .rs
TEST=$(shell find ut -name '*.test' | sort)
2022-11-12 12:46:13 -05:00
TEST_RS=${TEST:.test=.rs}
BLACKLIST += djot_js_filters # lua filters not implemented
BLACKLIST += djot_js_symb # uses ast
BLACKLIST += djot_js_sourcepos # not parsable
ut/mod.rs: ${TEST_RS}
mkdir -p ut
rm -f $@
2022-11-12 12:46:13 -05:00
for f in ${TEST}; do \
name=$$(basename -s .test $$f); \
echo ${BLACKLIST} | tr ' ' '\n' | grep -q $$name || echo "mod $$name;" >> $@; \
2022-11-12 12:46:13 -05:00
done
.test.rs:
gawk -fgen.awk $< | head -n-1 > $@
2022-11-12 12:46:13 -05:00
clean:
rm -f ut/*.rs