CXX := g++
CXXFLAGS := -O3 -march=native
all: mcsp

mcsp: mcsp.c graph.c graph.h
	$(CXX) $(CXXFLAGS) -Wall -std=c++11 -o v0.1_trimble_seq_cpp graph.c mcsp.c -pthread
	
clean:
	rm -f v0.1_trimble_seq_cpp
