# requires GNU make

# 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

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

assign1:	world.o motplanner.o

clean:
	rm -rf *.o assign1

dep:
	makedepend -Y assign1.cc world.cc

# DO NOT DELETE

world.o: world.h
