# Makefile for maze.c, image.c
# by Juliet Bishop

COMPILER = g++
IDIRS = -I/afs/theory.cornell.edu/user/CS718/pbenton/CAVE/include
LDIRS = -L/afs/theory.cornell.edu/user/CS718/pbenton/CAVE/lib
LIBS  = -lm -limage -lc_s -lgl_s -lsphere -lcave -lgutil -limage -lGL -lX11

maze:	maze.c image.o
	$(COMPILER) -o JulietMaze maze.c image.o $(IDIRS) $(LDIRS) $(LIBS)

image.o:	image.c
	$(COMPILER) -c image.c

clean:
	rm *.o maze *~