# Choose the compiler
#
CC= cc
#
# where do the forms library stuff on your machine ???
#
CFLAGS= -g -I/usr/staff/include
LDFLAGS = -L/usr/staff/lib
#
# or
#
#CC= CC
#CFLAGS= -O -I../FORMS
#LDFLAGS = -L../FORMS
#
LIBS= -lforms -lfm_s -lgl_s -lm
#
OBJS = demo.o rgbcolor.o 

demo: $(OBJS)
	${CC} ${CFLAGS} ${LDFLAGS} $(OBJS) -o $@ ${LIBS}

clean:
	-rm  *.o

empty:
	-rm  *.o

