CPPFLAGS=-Wall -I/usr/X11R6/include
LDFLAGS=-L/usr/X11R6/lib
#have_glu=:
ifdef have_glu
CPPFLAGS+=-DHAVE_GLU
LOADLIBES=-lGLU -lGL -lX11 -lm
else
LOADLIBES=-lGL -lX11 -lm
endif

EXES=\
test00	\
test01	\
test02	\
\
v_cube3	\
v_cube	\
v_hilbert00	\
v_hilbert01	\
v_hilbert02	\
v_hilbert03	\
v_hilbert	\
v_hilbert05	\

all: $(EXES)

clean:
	rm -f $(EXES)
