
CC     = gcc
#
# If your system is Unix and has the PBM tools on, use them to convert the
# output to some other format?
#
# If not, just leave it blank and you'll get output as PBM.
#
#PBMDEF =
PBMDEF = -DUSE_PBM

CC = gcc
CFLAGS = -Wall $(PBMDEF)
TARS = COPYING Makefile README fontpull.c fontpush.c

all:	fontpull fontpush


fontpull:	fontpull.c
fontpush:	fontpush.c

tidy:
	rm -f *.xbm *.pbm *.psf

clean:	tidy
	rm -f fontpull fontpush

tar:	$(TARS)
	zip gemftool.zip $(TARS)

