###################################################################
#
# makefile for compression project
#
###################################################################

CPP = g++

CPPFLAGS = -g -pg -ansi -Wall -pedantic-errors -Woverloaded-virtual -W 
# -Wenum-clash -Wtemplate-debugging
#CPPFLAGS = -ansi -Wall -pedantic -O2 -funroll-loops -g

LDFLAGS = -lglut -lGLU -lXmu -lGL -L/usr/X11R6/lib/

###################################################################

CPPFILES =	Set.cpp \
		Tree.cpp 

CPPOFILES =	Set.o \
		Tree.o 

HFILES =	Set.h \
		Tree.h 

###################################################################

.cpp.o: ; $(CPP) $(CPPFLAGS) -c $<

###################################################################

all:		$(CPPOFILES) 

###################################################################

clean:
	/bin/rm -f $(CPPOFILES) *~ *.iv gmon.out

###################################################################
