summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--etc/psf/.gitignore1
-rw-r--r--etc/psf/Makefile10
2 files changed, 9 insertions, 2 deletions
diff --git a/etc/psf/.gitignore b/etc/psf/.gitignore
index 6604437f..446e6b46 100644
--- a/etc/psf/.gitignore
+++ b/etc/psf/.gitignore
@@ -1 +1,2 @@
+*.png
 *.psfu
diff --git a/etc/psf/Makefile b/etc/psf/Makefile
index 1b535d7f..a3277b4e 100644
--- a/etc/psf/Makefile
+++ b/etc/psf/Makefile
@@ -1,15 +1,21 @@
 TABLE = default.u
 
 FONTS += sans6x8.psfu
+PNGS = $(FONTS:psfu=png)
 
 all: $(FONTS)
 
+png: $(PNGS)
+
 $(FONTS): $(TABLE)
 
-.SUFFIXES: .psf .psfu
+.SUFFIXES: .psf .psfu .png
 
 .psf.psfu:
 	psfaddtable $< $(TABLE) $@
 
+.psf.png:
+	psf2png $< > $@
+
 clean:
-	rm -f $(FONTS)
+	rm -f $(FONTS) $(PNGS)
> 2018-01-29Add fbclockJune McEnroe 2018-01-29Remove color from MakefileJune McEnroe 2018-01-29Set t_Co = 8June McEnroe Weirdly with t_Co = 16 yellow and bright white weren't showing up on TERM=linux. 2018-01-29Add :Q command aliasJune McEnroe It seemes I can't take my finger off the shift key fast enough. 2018-01-29Add setuid target for briJune McEnroe 2018-01-28Add init function to fb interfaceJune McEnroe 2018-01-28Add color.cJune McEnroe