Build fixes

This commit is contained in:
Alberto Fustinoni 2018-01-05 17:52:19 +09:00
parent e0a1f82bdb
commit 54bdc45750
2 changed files with 5 additions and 1 deletions

4
.gitignore vendored
View File

@ -2,5 +2,9 @@
*.so
*.dll
*.dylib
*.lib
*.pdb
*.exp
*.manifest
/old

View File

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