From: Iceman Date: Mon, 12 Sep 2016 16:06:24 +0000 (+0200) Subject: Merge pull request #193 from k02a/patch-2 X-Git-Tag: v3.0.0~84 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/04dc10fc4372acbd383ce967559e126d5f69fcd8?hp=b2030b22164fcb6f31c58aae7e59cd3fe302a643 Merge pull request #193 from k02a/patch-2 Better Linux compilation compability --- diff --git a/client/Makefile b/client/Makefile index 7f9c4c84..cab4fddb 100644 --- a/client/Makefile +++ b/client/Makefile @@ -12,7 +12,7 @@ CXX=g++ VPATH = ../common ../zlib OBJDIR = obj -LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm +LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm -ltermcap -lncurses 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