all : test

include Defs.$(shell uname)

CFLAGS:=-I. -g -O2 -DGL_GLEXT_PROTOTYPES $(CFLAGS)
CXXFLAGS:=$(CFLAGS)
LDFLAGS:=$(LDLIBS) -L/usr/lib/nvidia-current

%.o: %.c %.h

test : test.o GLUTCore.o OGLParts.o
	g++ -o $@ $^ $(LDFLAGS)

clean :
	rm -rf *.o *~ test