commit 6857809f5786533e611b994a5b4b8ac8d7a82e97 parent 7ad5e17b9358f3b912e9a4543642e0f6830335dc Author: Frederic Cambus <fred@statdns.com> Date: Thu, 25 Jun 2020 19:06:14 +0200 Use .fnt extension for exported raw font files. Diffstat:
6 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/wsfont/Makefile b/wsfont/Makefile @@ -4,7 +4,7 @@ # https://www.cambus.net/ # # Created: 2020-06-20 -# Last Updated: 2020-06-20 +# Last Updated: 2020-06-25 # # Spleen is released under the BSD 2-Clause license. # See LICENSE file for details. @@ -14,12 +14,12 @@ SIZES = 5x8 8x16 12x24 16x32 32x64 all: .for size in $(SIZES) - $(CC) $(CFLAGS) spleen${size}.c -o spleen${size} - spleen${size} > spleen-${size} - spleen${size} | uuencode spleen-${size} > spleen-${size}.uue + $(CC) $(CFLAGS) spleen-${size}.c -o spleen-${size} + spleen-${size} > spleen-${size}.fnt + spleen-${size} | uuencode spleen-${size}.fnt > spleen-${size}.fnt.uue .endfor clean: .for size in $(SIZES) - rm -f spleen${size} spleen-${size} *.uue + rm -f spleen-${size} *.fnt *.uue .endfor diff --git a/wsfont/spleen12x24.c b/wsfont/spleen-12x24.c diff --git a/wsfont/spleen16x32.c b/wsfont/spleen-16x32.c diff --git a/wsfont/spleen32x64.c b/wsfont/spleen-32x64.c diff --git a/wsfont/spleen5x8.c b/wsfont/spleen-5x8.c diff --git a/wsfont/spleen8x16.c b/wsfont/spleen-8x16.c