############################################################################
# RCS INFORMATION:
#
# 	$RCSfile: Makefile,v $
# 	$Author: jyelon $	$Locker:  $		$State: Exp $
#	$Revision: 1.2 $	$Date: 1995/02/24 23:18:41 $
#
############################################################################
# DESCRIPTION:
#
############################################################################
# REVISION HISTORY:
#
# $Log: Makefile,v $
# Revision 1.2  1995/02/24 23:18:41  jyelon
# *** empty log message ***
#
############################################################################
##########################################################
#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)

