#=======================================================================
#
# bdf2psf, a utility to convert BDF fonts to a PSF version 2 format.
# Copyright (C) 2007-2008 Zachary T. Smith, fbui@comcast.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# This module is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this module; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
#
# (See the file COPYING in the main directory of this archive for
# more details.)
#
#=======================================================================

all:	common.c bdf_font.c main.c
	gcc common.c bdf_font.c main.c -o bdf2psf

clean:
	rm -f *~ bdf2psf
