first commit
This commit is contained in:
18
CS4451/proj2/Submission/Makefile
Normal file
18
CS4451/proj2/Submission/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
CC = g++
|
||||
|
||||
# libraries required to compile opengl/glut programs may be system-dependent
|
||||
# this is a setup for a typical install of redhat 9
|
||||
|
||||
LIBOPT = -L/usr/X11R6/lib -lglut -lGLU -lGL -lXmu -lXi -lX11 -lm
|
||||
|
||||
all : prj
|
||||
|
||||
prj : cs4451_a2.o
|
||||
$(CC) -o proj2 cs4451_a2.o $(LIBOPT)
|
||||
|
||||
cs4451_a2.o : cs4451_a2.cpp Makefile
|
||||
$(CC) -I/usr/X11R6/include -c cs4451_a2.cpp
|
||||
|
||||
clean:
|
||||
rm proj2
|
||||
Reference in New Issue
Block a user