include ../Makefile.inc

TARGET = larson

$(TARGET): larson.cpp
	$(CXX) $(CXXFLAGS) larson.cpp -o $(TARGET) -lpthread

clean:
	rm -f $(TARGET)
