X-Git-Url: http://git.shiar.nl/unifont.git/blobdiff_plain/95e8d0be857e4bf0387fc5174276c1e4ab75ce5b..be1a7f89ff3e6581be4603fcf639164e25d61ee9:/font/plane01/Makefile diff --git a/font/plane01/Makefile b/font/plane01/Makefile index f1afad9..bdc07e4 100644 --- a/font/plane01/Makefile +++ b/font/plane01/Makefile @@ -1,6 +1,21 @@ # -# Create the unassigned-ranges.hex file, with filler glyphs. +# Create the Plane 1 unassigned.hex file, with filler glyphs. +# Create filler glyphs in areas where Unicode scripts are not assigned; +# these are placed in directory "all/" so they are not included with +# the main font build, which reads "plane01/*.hex". # -all: - ../../bin/unihexfill < unassigned-ranges.txt > unassigned.hex +all: plane01.hex plane01-nonprinting.hex plane01-unassigned.hex + if [ ! -d all ]; then \ + mkdir all; \ + fi + ../../bin/unihexfill < unassigned-ranges.txt > plane01-unassigned.hex + ../../bin/unihexfill < noscript-ranges.txt > all/noscript.hex + sort -u all/noscript.hex *.hex > all/plane01-all.hex + +clean: + +distclean: + \rm -rf all + +.PHONY: all clean distclean