diff options
author | B. Watson <yalhcru@gmail.com> | 2017-04-03 03:30:23 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2017-04-03 03:30:23 -0400 |
commit | 229dc8d1b9372f89343b3742486496b06aeb813b (patch) | |
tree | fa1b881990fdcaacce218647732f77b667997dbb /Makefile | |
download | ttf-console-fonts-229dc8d1b9372f89343b3742486496b06aeb813b.tar.gz |
initial commit
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) |