# CS425 Imakefile F'2001 # put source file names here separated by spaces SRCS= stationary.c shiny.c withview.c # put object file names here OBJS= stationary.o shiny.o withview.o # Ucomment the next line to use debugger # CDEBUGFLAGS = -g #Change the following line to the location of the glut shared library DEP = /usr/lib/libglut.so #Change the following line to the system location for X shared libraries SYS = -lX11 -lXext -lXm -lXi -lGL -lGLU -lm # put the run image names in this list that you want "make all" # to make. Separate by spaces, continue lines by back slash. AllTarget(stationary shiny withview) # put one of these lines in for each run image you want to be able # to make NormalProgramTarget(stationary,stationary.o,NullParameter,$(DEP),$(SYS)) NormalProgramTarget(shiny,shiny.o,NullParameter,$(DEP),$(SYS)) NormalProgramTarget(withview,withview.o,NullParameter,$(DEP),$(SYS)) DependTarget() LintTarget()