VERSION =	VERSION_GL
ROOT =		./../..

include		$(ROOT)/base.config

LIB =		libhersheygl.a

OBJECTS =	hershey.o

include		$(ROOT)/make.generic

LIBS =		-lhersheygl -lgl

LIBPATH =	-L$(ROOT)/lib

LL =		$(LIBPATH) $(LIBS)

PROGS =		test

build::		$(PROGS)

clean::
		rm -f $(PROGS)

test:		test.c
		$(CC) $(CFLAGS) $(LFLAGS) -o test test.c $(LL)
