1b35cf2c0Smrg# Copyright 2005 Red Hat, Inc. 2b35cf2c0Smrg# 3b35cf2c0Smrg# Permission to use, copy, modify, distribute, and sell this software 4b35cf2c0Smrg# and its documentation for any purpose is hereby granted without 5b35cf2c0Smrg# fee, provided that the above copyright notice appear in all copies 6b35cf2c0Smrg# and that both that copyright notice and this permission notice 7b35cf2c0Smrg# appear in supporting documentation, and that the name of Red Hat 8b35cf2c0Smrg# not be used in advertising or publicity pertaining to distribution 9b35cf2c0Smrg# of the software without specific, written prior permission. Red 10b35cf2c0Smrg# Hat makes no representations about the suitability of this software 11b35cf2c0Smrg# for any purpose. It is provided "as is" without express or implied 12b35cf2c0Smrg# warranty. 13b35cf2c0Smrg# 14b35cf2c0Smrg# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15b35cf2c0Smrg# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN 16b35cf2c0Smrg# NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17b35cf2c0Smrg# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 18b35cf2c0Smrg# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 19b35cf2c0Smrg# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 20b35cf2c0Smrg# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21b35cf2c0Smrg 22b35cf2c0SmrgFONT_FILES = \ 23b35cf2c0Smrg crox1cb \ 24b35cf2c0Smrg crox1c \ 25b35cf2c0Smrg crox1cbo \ 26b35cf2c0Smrg crox1co \ 27b35cf2c0Smrg crox1hb \ 28b35cf2c0Smrg crox1h \ 29b35cf2c0Smrg crox1hbo \ 30b35cf2c0Smrg crox1ho \ 31b35cf2c0Smrg crox1tb \ 32b35cf2c0Smrg crox1t \ 33b35cf2c0Smrg crox1tbo \ 34b35cf2c0Smrg crox1to \ 35b35cf2c0Smrg crox2cb \ 36b35cf2c0Smrg crox2c \ 37b35cf2c0Smrg crox2cbo \ 38b35cf2c0Smrg crox2co \ 39b35cf2c0Smrg crox2hb \ 40b35cf2c0Smrg crox2h \ 41b35cf2c0Smrg crox2hbo \ 42b35cf2c0Smrg crox2ho \ 43b35cf2c0Smrg crox2tb \ 44b35cf2c0Smrg crox2t \ 45b35cf2c0Smrg crox2tbo \ 46b35cf2c0Smrg crox2to \ 47b35cf2c0Smrg crox3cb \ 48b35cf2c0Smrg crox3c \ 49b35cf2c0Smrg crox3cbo \ 50b35cf2c0Smrg crox3co \ 51b35cf2c0Smrg crox3hb \ 52b35cf2c0Smrg crox3h \ 53b35cf2c0Smrg crox3hbo \ 54b35cf2c0Smrg crox3ho \ 55b35cf2c0Smrg crox3tb \ 56b35cf2c0Smrg crox3t \ 57b35cf2c0Smrg crox3tbo \ 58b35cf2c0Smrg crox3to \ 59b35cf2c0Smrg crox4hb \ 60b35cf2c0Smrg crox4h \ 61b35cf2c0Smrg crox4hbo \ 62b35cf2c0Smrg crox4ho \ 63b35cf2c0Smrg crox4tb \ 64b35cf2c0Smrg crox4t \ 65b35cf2c0Smrg crox4tbo \ 66b35cf2c0Smrg crox4to \ 67b35cf2c0Smrg crox5hb \ 68b35cf2c0Smrg crox5h \ 69b35cf2c0Smrg crox5hbo \ 70b35cf2c0Smrg crox5ho \ 71b35cf2c0Smrg crox5tb \ 72b35cf2c0Smrg crox5t \ 73b35cf2c0Smrg crox5tbo \ 74b35cf2c0Smrg crox5to \ 75b35cf2c0Smrg crox6hb \ 76b35cf2c0Smrg crox6h \ 77b35cf2c0Smrg crox6hbo \ 78b35cf2c0Smrg crox6ho \ 79b35cf2c0Smrg crox6tb \ 80b35cf2c0Smrg crox6t \ 81b35cf2c0Smrg crox6tbo \ 82b35cf2c0Smrg crox6to \ 83b35cf2c0Smrg koi10x16b \ 84b35cf2c0Smrg koi10x20 \ 85b35cf2c0Smrg koi6x10 \ 86b35cf2c0Smrg koinil2 87b35cf2c0Smrg 88b35cf2c0SmrgBDF_FILES = $(FONT_FILES:%=%.bdf) 89b35cf2c0SmrgPCF_FILES = $(FONT_FILES:%=%.pcf$(COMPRESS_SUFFIX)) 90b35cf2c0Smrg 91b35cf2c0SmrgSUFFIXES = .bdf .pcf$(COMPRESS_SUFFIX) 92b35cf2c0Smrg 93b35cf2c0Smrg.bdf.pcf$(COMPRESS_SUFFIX): 94b35cf2c0Smrg @rm -f $@ 95b35cf2c0Smrg $(AM_V_GEN)$(BDFTOPCF) -t $< | $(COMPRESS) $(COMPRESS_FLAGS) > $@ 96b35cf2c0Smrg 97b35cf2c0Smrgfontdir = @FONTDIR@ 98b35cf2c0Smrgfont_DATA = $(PCF_FILES) 99b35cf2c0SmrgCLEANFILES = $(font_DATA) 100b35cf2c0Smrg 101b35cf2c0SmrgEXTRA_DIST = $(BDF_FILES) COPYRIGHT README.md 102b35cf2c0Smrg 103b35cf2c0SmrgMAINTAINERCLEANFILES = ChangeLog INSTALL 104b35cf2c0Smrg 105b35cf2c0Smrginstall-data-hook: 106b35cf2c0Smrg @rm -f $(DESTDIR)$(fontdir)/fonts.dir 107b35cf2c0Smrg $(MKFONTDIR) $(DESTDIR)$(fontdir) 108b35cf2c0Smrg @RUN_FCCACHE@ 109b35cf2c0Smrg 110b35cf2c0Smrgdistuninstallcheck: 111b35cf2c0Smrg @: 112b35cf2c0Smrg 113b35cf2c0Smrg 114b35cf2c0Smrg.PHONY: ChangeLog INSTALL 115b35cf2c0Smrg 116b35cf2c0SmrgINSTALL: 117b35cf2c0Smrg $(INSTALL_CMD) 118b35cf2c0Smrg 119b35cf2c0SmrgChangeLog: 120b35cf2c0Smrg $(CHANGELOG_CMD) 121b35cf2c0Smrg 122b35cf2c0Smrgdist-hook: ChangeLog INSTALL 123