# This Makefile is set up to work on the new CS department Suns.
# There is a sample Makefile provided somewhere (probably in the
# examples directory of the CGAL distribution) but it's a lot longer
# than this (though not much more complicated.)
# 
# IMPORTANT: You have to use gmake (i.e. gnu-make) for this to compile
# properly.  On CS machines, just type "gmake"
#
CGAL_INCL_DIR = /usr/local/include
CGAL_LIB_DIR = /usr/local/lib
CGAL_OS_COMPILER = sparc_SunOS-5.8_g++-2.95.2_LEDA
# compiler specific configuration dir
CGAL_INCL_CONF_DIR = $(CGAL_INCL_DIR)/CGAL/config/sparc_SunOS-5.8_g++-2.95.2


CXXFLAGS =  -Wall -ftemplate-depth-25 \
	-I$(CGAL_INCL_CONF_DIR) \
	-I$(CGAL_INCL_DIR)
LOADLIBES = -L$(CGAL_LIB_DIR)/$(CGAL_OS_COMPILER) \
	-R $(CGAL_LIB_DIR)/$(CGAL_OS_COMPILER)
LDFLAGS = -lCGAL  -lm 

TARGETS= convexhull

all: $(TARGETS)


clean:
	rm -f $(TARGETS) *.o
