* Add a "make fonts" rule to rebuild all generated fonts.
This commit is contained in:
parent
9162cd19e9
commit
29b3408410
1 changed files with 15 additions and 0 deletions
15
Makefile.am
15
Makefile.am
|
@ -5,3 +5,18 @@ DIST_SUBDIRS = $(SUBDIRS)
|
|||
EXTRA_DIST = bootstrap
|
||||
AUTOMAKE_OPTIONS = foreign dist-bzip2
|
||||
|
||||
fonts: tools/caca2tlf FORCE
|
||||
$(top_builddir)/tools/caca2tlf "Monospace 9" | zip \
|
||||
> $(top_builddir)/fonts/bigmono9.tlf
|
||||
$(top_builddir)/tools/caca2tlf "Monospace Bold 12" | zip \
|
||||
> $(top_builddir)/fonts/bigmono12.tlf
|
||||
$(top_builddir)/tools/caca2tlf --half "Monospace 9" | zip \
|
||||
> $(top_builddir)/fonts/mono9.tlf
|
||||
$(top_builddir)/tools/caca2tlf --half "Monospace Bold 12" | zip \
|
||||
> $(top_builddir)/fonts/mono12.tlf
|
||||
$(top_builddir)/tools/caca2tlf --quarter "Monospace 9" | zip \
|
||||
> $(top_builddir)/fonts/smmono9.tlf
|
||||
$(top_builddir)/tools/caca2tlf --quarter "Monospace Bold 12" | zip \
|
||||
> $(top_builddir)/fonts/smmono12.tlf
|
||||
|
||||
FORCE:
|
||||
|
|
Loading…
Reference in a new issue