
CXX = g++

# For debugging
#CXXFLAGS = -g

# For optimization
CXXFLAGS = -O -g

testcase: testcase.C eventqueue.h nodules2.h primitives.h
	$(CXX) $(CXXFLAGS) testcase.C -o testcase 


