
SOURCES			=	$(wildcard *.cpp) $(wildcard **/*.cpp)
TARGET			=	xlink


.PHONY: tools
tools: $(SOURCES)
	$(CXX) -o $(BUILD_DIR)/$(TARGET) $(SOURCES) $(CXXFLAGS) 