diff --git a/.gitignore b/.gitignore index ef42ed8..52a73ed 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,9 @@ *.so *.dll *.dylib +*.lib +*.pdb +*.exp +*.manifest /old diff --git a/Makefile b/Makefile index 5ee81bb..09a6902 100644 --- a/Makefile +++ b/Makefile @@ -494,7 +494,7 @@ $(TARGET): $(OBJECTS) ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJECTS) else - $(LD) $(LINKOUT)$@ $^ $(LDFLAGS) + $(LD) $(LINKOUT)$@ $^ $(LDFLAGS) $(LIBS) endif %.o: %.cpp