Commit a5981b35 authored by Mathieu Valois's avatar Mathieu Valois
Browse files

working cli

parent cf66c701
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10,10 +10,10 @@ BIN = cstatsgen
$(BIN): main.o statsgen.o
	$(CXX) $^ -o $@ $(LDFLAGS)

main.o: $(SRC)/main.cpp $(INC)/statsgen.h
main.o: $(SRC)/cli/main.cpp $(INC)/statsgen.h
	$(CXX) $(CXXFLAGS) $< -c -o $@

statsgen.o: $(SRC)/statsgen.cpp $(INC)/statsgen.h $(INC)/utils.h
statsgen.o: $(SRC)/core/statsgen.cpp $(INC)/statsgen.h $(INC)/utils.h
	$(CXX) $(CXXFLAGS) $< -c -o $@

clean: