# requires GNU make

#SVL_DIR=/projects/arl

# comment this out if you aren't using CGAL
USE_CGAL=true
export USE_CGAL

# You must define DOLT_MAKEFILE in your environment.
# The "dolt" makefile assumes you have defined CGAL_MAKEFILE 
include $(DOLT_MAKEFILE)

CXXFLAGS += -Wall   -g

# add compiler flags for the filereader library (uncomment if necessary)
#FILEREADER_DIR = /usr/local
#CXXFLAGS += -I$(FILEREADER_DIR)/include
#LDFLAGS += -L$(FILEREADER_DIR)/lib
#LDFLAGS += -L$(SVL_DIR)/lib
LOADLIBES += -lfilereader 

assign3:	mapproblem.o world.o

clean:
	rm -rf *.o assign3

dep:
	makedepend -Y assign3.cpp world.cpp mapproblem.cpp


# DO NOT DELETE

assign3.o: world.h mapproblem.h
world.o: world.h
mapproblem.o: mapproblem.h world.h
