SRC =		xgranite.c
OBJ =		xgranite.o

CFLAGS =	-O

xgranite:	${OBJ}
		cc ${CFLAGS} -o xgranite ${OBJ} -lX11

clean:
		rm -f xgranite *.o errs core
