Fix LDLIBS linker errors
This commit is contained in:
parent
79754385c5
commit
e33824355b
2
Makefile
2
Makefile
@ -21,7 +21,7 @@ endif
|
|||||||
all: $(BIN)
|
all: $(BIN)
|
||||||
|
|
||||||
$(BIN): $(OBJS) $(DEPS)
|
$(BIN): $(OBJS) $(DEPS)
|
||||||
$(CXX) $(LDFLAGS) $(LDLIBS) -o $(BIN) $(OBJS)
|
$(CXX) $(LDFLAGS) -o $(BIN) $(OBJS) $(LDLIBS)
|
||||||
|
|
||||||
%.o: %.cpp %.d
|
%.o: %.cpp %.d
|
||||||
$(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<
|
$(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<
|
||||||
|
Reference in New Issue
Block a user