# # David Barberi # Syracuse University Virtual Reality Lab CFLAGS = -g CC = cc RM = rm -f CP = cp -r INSTALL = install -s -m 700 DEFINES = LIBS = -lgl -lm INSTALL_NAME = /ip/vr/hand/hand OBJECTS = hand.o stream.o SOURCES = hand.c stream.c all: hand hand: ${OBJECTS} ${CC} ${CFLAGS} ${DEFINES} -o ${INSTALL_NAME} ${OBJECTS} ${LIBS} .c.o: ; ${CC} ${CFLAGS} ${DEFINES} -c $< # Dependencies hand.o: hand.c stream.o: stream.c powerglove.h install: hand ${INSTALL} hand ${INSTALL_NAME}