prefix=/usr/local
CC=gcc $(CFLAGS)
PROG = tools 

all: $(PROG)

tools:
	cd tools; make 

# run genfont manual
genfont:
	cd genfont; make

clean:
	rm -f *.bak *.o 
	cd tools; make  clean
	cd genfont; make clean


distclean: clean
	rm -f Makefile
	cd tools; make  distclean
	cd genfont; make distclean

install:
	cd tools; make  install
	cd genfont; make install

