###############################################################
# You need to define the following variables appropriately
###############################################################
CC			= cc -c 
DEFINES		= -D_NO_PROTO -DSTRINGS_ALIGNED -DNO_REGEX
INCLUDES	= -I/local/include -I/local/encap/X11-R5/include
LIBRARIES 	= -L/local/lib -L/local/encap/X11-R5/lib


###############################################################
RM		= rm -f
CFLAGS		= -O $(DEFINES) $(INCLUDES)
LOAD_FLAGS	= -lXm -lXt -lX11 -lm
	

all: summary

summary: summary.o
		$(RM) $@
		cc -o $@ summary.o $(LIBRARIES) $(LOAD_FLAGS)

