Skip to content

Commit a18958b

Browse files
authored
Merge pull request awwit#3 from wuyougongzi/master
fix make error in ubuntu system
2 parents b0f7775 + 9b10936 commit a18958b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $(BUILDDIR):
2424
$(MKDIR) $@
2525

2626
$(EXECUTABLE): $(OBJECTS)
27-
$(CXX) $(LDFLAGS) $(OBJECTS) -o $@
27+
$(CXX) $(OBJECTS) -o $@ $(LDFLAGS)
2828

2929
$(OBJECTS) : $(OBJDIR)/%.o : $(SOURCEDIR)/%.cpp
3030
@$(MKDIR) $(dir $@)

0 commit comments

Comments
 (0)