blob: 1dfd9be5246d3a25ff188590e180f7545e463b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
ENCODINGS = T2A T2B T2C X2
ENC2UNI = $(ENCODINGS:=uni.map)
all:
./mkencs.sh
show_glyphs_absent_in_unicode: $(ENC2UNI)
@grep ';;' $^ | sed 's,^[^;]*;;,,' | sort -u
clean:
rm -f encfiles/*.enc
|