diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64840e1 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ + +PSFDIR=/usr/share/kbd/consolefonts + +.PHONY: all clean install + +all: .done + +.done: conv.sh fonts ttf2psfu.sh + sh conv.sh + touch .done + +clean: + rm -f *.psfu *.psfu.gz *.log *.bdf .done + +install: all + mkdir -p $(DESTDIR)$(PSFDIR) + install -m0644 *.psfu.gz $(DESTDIR)$(PSFDIR) |