# CS425 Imakefile F'2001 # put source file names here separated by spaces SRCS= mytex.c mytrap.c mytrap2.c # put object file names here OBJS= mytex.o mytrap.o mytrap2.o # Ucomment the next line to use debugger CDEBUGFLAGS = -g CC = gcc #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 -lXm -lXext -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(mytex mytrap mytrap2) # put one of these lines in for each run image you want to be able # to make NormalProgramTarget(mytex,mytex.o,NullParameter,$(DEP),$(SYS)) NormalProgramTarget(mytrap,mytrap.o,NullParameter,$(DEP),$(SYS)) NormalProgramTarget(mytrap2,mytrap2.o,NullParameter,$(DEP),$(SYS)) DependTarget() LintTarget()