##########################################################
#The user needs to edit the following four definitions 
##########################################################
OPTIMIZE	= 
DEFINES		= -D_NO_PROTO -DSTRINGS_ALIGNED -DNO_REGEX
INCLUDES  	= -I/local/encap/X11-R5/include
LIBRARIES 	= -L/local/encap/X11-R5/lib 


##########################################################
#Configuration of cc
##########################################################
RM			= rm -f
CC			= cc 
CFLAGS		= -c -O -I$(SOURCES)/headers $(INCLUDES) $(OPTIMIZE) 
LOAD_FLAGS	= -lXm -lXt -lX11 -lm


##########################################################
#All the dependences
##########################################################
all: projections 

projections: projections.o	
		$(RM) $@
		cc -g -o $@ projections.o $(DEFINES) $(LIBRARIES) $(LOAD_FLAGS)

