Use a common make include file to do most of the work and set the appropriate LANG from localized/templates/ . This should simplify it quite a bit and reduce duplication. Also we were not even installing them, so now we are.
13 lines
226 B
Makefile
13 lines
226 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
DTINFO_FONT = dtinfo.pcf.gz
|
|
noinst_DATA = $(DTINFO_FONT)
|
|
|
|
BUILT_SOURCES = $(DTINFO_FONT)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
dtinfo.pcf.gz: dtinfo.bdf
|
|
$(RM) $@
|
|
$(BDFTOPCF) -t $< |$(GZIP) > $@
|
|
|