1a64a7ac0Smrg# Copyright 2005 Red Hat, Inc. 2a64a7ac0Smrg# 3a64a7ac0Smrg# Permission to use, copy, modify, distribute, and sell this software 4a64a7ac0Smrg# and its documentation for any purpose is hereby granted without 5a64a7ac0Smrg# fee, provided that the above copyright notice appear in all copies 6a64a7ac0Smrg# and that both that copyright notice and this permission notice 7a64a7ac0Smrg# appear in supporting documentation, and that the name of Red Hat 8a64a7ac0Smrg# not be used in advertising or publicity pertaining to distribution 9a64a7ac0Smrg# of the software without specific, written prior permission. Red 10a64a7ac0Smrg# Hat makes no representations about the suitability of this software 11a64a7ac0Smrg# for any purpose. It is provided "as is" without express or implied 12a64a7ac0Smrg# warranty. 13a64a7ac0Smrg# 14a64a7ac0Smrg# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15a64a7ac0Smrg# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN 16a64a7ac0Smrg# NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17a64a7ac0Smrg# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 18a64a7ac0Smrg# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 19a64a7ac0Smrg# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 20a64a7ac0Smrg# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21a64a7ac0Smrg 22a64a7ac0SmrgFONT_FILES = arabic24 23a64a7ac0Smrg 24a64a7ac0SmrgBDF_FILES = $(FONT_FILES:%=%.bdf) 25a64a7ac0SmrgPCF_FILES = $(FONT_FILES:%=%.pcf$(COMPRESS_SUFFIX)) 26a64a7ac0Smrg 27a64a7ac0SmrgSUFFIXES = .bdf .pcf$(COMPRESS_SUFFIX) 28a64a7ac0Smrg 29a64a7ac0Smrg.bdf.pcf$(COMPRESS_SUFFIX): 30a64a7ac0Smrg @rm -f $@ 31a64a7ac0Smrg $(AM_V_GEN)$(BDFTOPCF) -t $< | $(COMPRESS) $(COMPRESS_FLAGS) > $@ 32a64a7ac0Smrg 33a64a7ac0Smrgfontdir = @FONTDIR@ 34a64a7ac0Smrgfont_DATA = $(PCF_FILES) 35a64a7ac0SmrgCLEANFILES = $(font_DATA) 36a64a7ac0Smrg 37a64a7ac0SmrgEXTRA_DIST = $(BDF_FILES) uniarab.txt README.md 38a64a7ac0Smrg 39a64a7ac0SmrgMAINTAINERCLEANFILES = ChangeLog INSTALL 40a64a7ac0Smrg 41a64a7ac0Smrginstall-data-hook: 42a64a7ac0Smrg @rm -f $(DESTDIR)$(fontdir)/fonts.dir 43a64a7ac0Smrg $(MKFONTDIR) $(DESTDIR)$(fontdir) 44a64a7ac0Smrg @RUN_FCCACHE@ 45a64a7ac0Smrg 46a64a7ac0Smrgdistuninstallcheck: 47a64a7ac0Smrg @: 48a64a7ac0Smrg 49a64a7ac0Smrg 50a64a7ac0Smrg.PHONY: ChangeLog INSTALL 51a64a7ac0Smrg 52a64a7ac0SmrgINSTALL: 53a64a7ac0Smrg $(INSTALL_CMD) 54a64a7ac0Smrg 55a64a7ac0SmrgChangeLog: 56a64a7ac0Smrg $(CHANGELOG_CMD) 57a64a7ac0Smrg 58a64a7ac0Smrgdist-hook: ChangeLog INSTALL 59