From 5c57eaa2aae809b49e2a1a6a466adf175a3ee0ec Mon Sep 17 00:00:00 2001 From: Sancar Adali Date: Tue, 15 May 2018 17:40:21 -0400 Subject: [PATCH] fix C binary building in windows --- src/Makevars.win | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makevars.win b/src/Makevars.win index 8df7ccd..a7ca364 100644 --- a/src/Makevars.win +++ b/src/Makevars.win @@ -74,7 +74,7 @@ graphm/./algorithm_unif.o: algorithm_unif.cpp algorithm_unif.h graphm_bin: graphm/bin/graphm graphm/bin/graphm: $(GRAPHM_OBJ_REL) - cd graphm && $(CXX) $(PKG_CPPFLAGS) -c main.cpp -o bin/graphm + cd graphm && $(CXX) $(PKG_CPPFLAGS) -I"$(LIB_GSL)\include" main.cpp ./*o $(LDFLAGS) -o ./bin/graphm $(PKG_LIBS) clean: cleanb