# Time-stamp: </b1/wrf/web/wiki/ComputerGraphicsFall2010/Makefile, Sun, 14 Nov 2010, 21:10:41 EST, http://wrfranklin.org/>

# Compile and link an OpenGL program, xxxx.c
#
# Type:
#
#        make xxxx

CC = gcc 

LDLIBS = -lglut -lGL -lGLU -lXmu -lX11  -lm 

.c:
	$(CC)  $@.c $(LDLIBS) -o $@

.cc:
	$(CC)  $@.cc $(LDLIBS) -o $@

