Fix MSVC2017

This commit is contained in:
twinaphex 2019-01-04 05:53:00 +01:00
parent f9f03ee621
commit 32182d2b2d

View File

@ -527,7 +527,7 @@ $(TARGET): $(OBJECTS)
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
else
$(LD) $(LINKOUT)$@ $^ $(LDFLAGS)
$(LD) $(LINKOUT)$@ $^ $(LDFLAGS) $(LIBS)
endif
%.o: %.c