
CFLAGS = -O2 -fomit-frame-pointer -s -N

all		:	restorefont convfont

convfont	:	convfont.c
	gcc $(CFLAGS) convfont.c -o convfont

restorefont	:	restorefont.c
	gcc $(CFLAGS) restorefont.c -o restorefont -lvga
	chmod +s restorefont

clean		:
	rm -f convfont restorefont
