Skip to content

Commit

Permalink
makefile: include extra cflags for all build (#23)
Browse files Browse the repository at this point in the history
* fix add_flags coverage

* remove c++11
  • Loading branch information
ymjiang authored Feb 28, 2020
1 parent 7b71429 commit 5da3f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ build/libps.a: $(OBJS)

build/%.o: src/%.cc ${ZMQ}
@mkdir -p $(@D)
$(CXX) $(INCPATH) -std=c++0x -MM -MT build/$*.o $< >build/$*.d
$(CXX) $(CFLAGS) $(INCPATH) -MM -MT build/$*.o $< >build/$*.d
$(CXX) $(CFLAGS) $(LIBS) -c $< -o $@

-include build/*.d
Expand Down

0 comments on commit 5da3f68

Please sign in to comment.