Makefile.am revision 644fc5c1
1# Copyright 2005 Red Hat, Inc. 2# 3# Permission to use, copy, modify, distribute, and sell this software 4# and its documentation for any purpose is hereby granted without 5# fee, provided that the above copyright notice appear in all copies 6# and that both that copyright notice and this permission notice 7# appear in supporting documentation, and that the name of Red Hat 8# not be used in advertising or publicity pertaining to distribution 9# of the software without specific, written prior permission. Red 10# Hat makes no representations about the suitability of this software 11# for any purpose. It is provided "as is" without express or implied 12# warranty. 13# 14# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN 16# NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 18# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 19# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 20# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21 22FONT_FILES = \ 23 12x24 \ 24 12x24rk \ 25 8x16 \ 26 8x16rk 27 28BDF_FILES = $(FONT_FILES:%=%.bdf) 29PCF_FILES = $(FONT_FILES:%=%.pcf.gz) 30 31SUFFIXES = .bdf .pcf.gz 32 33.bdf.pcf.gz: 34 @rm -f $@ 35 $(BDFTOPCF) -t $< | gzip > $@ 36 37fontdir = @FONTDIR@ 38font_DATA = $(PCF_FILES) 39CLEANFILES = $(font_DATA) 40 41EXTRA_DIST = $(BDF_FILES) autogen.sh 42 43install-data-hook: 44 @rm -f $(DESTDIR)$(fontdir)/fonts.scale 45 $(MKFONTSCALE) $(DESTDIR)$(fontdir) 46 @rm -f $(DESTDIR)$(fontdir)/font.dir 47 $(MKFONTDIR) $(DESTDIR)$(fontdir) 48 49distuninstallcheck: 50 @: 51