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 *.so
*.dll *.dll
*.dylib *.dylib
*.lib
*.pdb
*.exp
*.manifest
/old /old

View File

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