unifont-7.0.04.tar.gz
[unifont.git] / font / plane01 / Makefile
1
2 #
3 # Create the Plane 1 unassigned.hex file, with filler glyphs.
4 # Create filler glyphs in areas where Unicode scripts are not assigned;
5 # these are placed in directory "all/" so they are not included with
6 # the main font build, which reads "plane01/*.hex".
7 #
8 all: plane01.hex plane01-nonprinting.hex plane01-unassigned.hex
9         if [ ! -d all ]; then \
10                 mkdir all; \
11         fi
12         ../../bin/unihexfill < unassigned-ranges.txt > plane01-unassigned.hex
13         ../../bin/unihexfill < noscript-ranges.txt   > all/noscript.hex
14         sort -u all/noscript.hex *.hex > all/plane01-all.hex
15
16 clean:
17
18 distclean:
19         \rm -rf all
20
21 .PHONY: all clean distclean