GECODE_DIR=/home/tias/local/src/gecode-3.1.0
OBJECTS = \
	example \

# Compiler stuff
CXX = g++
CXXFLAGS = \
		-I. -I${GECODE_DIR} \
		-DNDEBUG -fvisibility=hidden -fPIC -Wextra -Wall -pipe \
		-ggdb -O3 -fno-strict-aliasing -finline-limit=3000 \
		-ffast-math -mtune=i686
LDFLAGS = \
		-L. -L${GECODE_DIR} \
		-lgecodekernel -lgecodedriver \
		-lgecodesearch -lgecodeint \
		-lgecodegist # uncomment this if you get GIST related errors

all: $(OBJECTS)

$(OBJECTS):

clean: 
	rm -f $(OBJECTS)

dist-clean: clean

