unifont-7.0.04.tar.gz
[unifont.git] / font / plane01 / Makefile
index 135d4df96ce41d36acbe82a44807be349a370456..bdc07e41d4904145768a866922ebaf46a20a5ae3 100644 (file)
@@ -1,6 +1,21 @@
 
 #
 # 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