|
|
@ -5,15 +5,16 @@ LDPFALGS = -pthread
|
|
|
|
CPP_FILES := $(wildcard *.cpp)
|
|
|
|
CPP_FILES := $(wildcard *.cpp)
|
|
|
|
OBJ_FILES := $(addprefix ./,$(notdir $(CPP_FILES:.cpp=.o)))
|
|
|
|
OBJ_FILES := $(addprefix ./,$(notdir $(CPP_FILES:.cpp=.o)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tests: $(OBJ_FILES)
|
|
|
|
tests: $(OBJ_FILES)
|
|
|
|
$(CXX) $(CXXFLAGS) $(LDPFALGS) -o $@ $^
|
|
|
|
$(CXX) $(CXXFLAGS) $(LDPFALGS) -o $@ $^
|
|
|
|
|
|
|
|
mkdir -p logs
|
|
|
|
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
%.o: %.cpp
|
|
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
clean:
|
|
|
|
rm -f tests *.o logs/*
|
|
|
|
rm -f tests *.o logs/*.txt
|
|
|
|
|
|
|
|
|
|
|
|
rebuild: clean tests
|
|
|
|
rebuild: clean tests
|
|
|
|
|
|
|
|
|
|
|
|