Skip to content

Commit ed44f7a

Browse files
committed
fix make error in ubuntu system
1 parent cdbba5c commit ed44f7a

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)