From 54bdc45750b75320987e021f5354ce1ecd324bc9 Mon Sep 17 00:00:00 2001 From: Alberto Fustinoni Date: Fri, 5 Jan 2018 17:52:19 +0900 Subject: [PATCH] Build fixes --- .gitignore | 4 ++++ Makefile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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