From 775c4c4a282900d14d4a612c9cb1435f8059d627 Mon Sep 17 00:00:00 2001 From: menshiyun Date: Sat, 24 Sep 2016 12:56:08 +0800 Subject: [PATCH] test-pr --- client/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index cab4fddb..863f3c2c 100644 --- a/client/Makefile +++ b/client/Makefile @@ -12,7 +12,12 @@ CXX=g++ VPATH = ../common ../zlib OBJDIR = obj -LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm -ltermcap -lncurses +ifneq (,$(findstring MINGW,$(platform))) + LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm +else + LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm -ltermcap -lncurses +endif + LUALIB = ../liblua/liblua.a LDFLAGS = $(COMMON_FLAGS) CFLAGS = -std=c99 -I. -I../include -I../common -I../zlib -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4 -- 2.39.2