
INSTALLBIN=/usr/local/bin

OBJS = main.o font.o mouse.o disp.o button.o

cse: $(OBJS)
	$(CC) -o cse $(OBJS) -lvgagl -lvga

$(OBJS): font.h mouse.h disp.h conf.h colors.h button.h

clean:
	rm -f *.o

install:
	install -m 04755 -g bin -o root -s cse $(INSTALLBIN)
