# This makefile is for compiling on Matrix the SGI Onyx 2 running # IRIX. This file will not work on other platforms. # CC = CC CXXFLAGS = -O3 -LANG:std -mp LDFLAGS = -lglut -lGLU -lGL -lXi -lXmu -lm -lX11 lab3: lab3.cpp $(CC) $(CXXFLAGS) lab3.cpp -o $@ $(LDFLAGS) clean: $(RM) *.o *~