From: iceman1001 Date: Thu, 18 Feb 2016 17:55:44 +0000 (+0100) Subject: CHG: this makefile should compile on Ubuntu 1404 without problems. The QT4-5 detect... X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/805cd07e25811b87b48c4258b57e24445d385551 CHG: this makefile should compile on Ubuntu 1404 without problems. The QT4-5 detection is inside MINQW detection part. --- diff --git a/client/Makefile b/client/Makefile index 154828a9..84a158b2 100644 --- a/client/Makefile +++ b/client/Makefile @@ -29,6 +29,17 @@ ifneq (,$(findstring MINGW,$(platform))) else QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 endif + + # QT version, 4 or 5 + qtplatform = $(shell $(MOC) -v) + ifneq (, $(findstring moc 5,$(qtplatform))) + CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include + QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets + else + CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui + QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 + endif + else ifeq ($(platform),Darwin) CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) @@ -44,30 +55,6 @@ else LUAPLATFORM = linux endif -# QT version, 4 or 5 -qtplatform = $(shell $(MOC) -v) -ifneq (, $(findstring moc 5,$(qtplatform))) - CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include - QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets -else - CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui - QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 -endif - -# easy variable to pass to allow this to build on ubutnu 14.04.2 -ifeq (1,$(UBUNTU_1404_QT4)) - CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 - QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) - LUALIB = ../liblua/liblua.a - LUALIB += -ldl - MOC = $(shell pkg-config --variable=moc_location QtCore) - LUAPLATFORM = linux - - # pop out the libgdi/etc strings - LDLIBS = -L/mingw/lib -L/opt/local/lib -L/usr/local/lib -lm -lreadline -lpthread - -endif - ifneq ($(QTLDLIBS),) QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o CFLAGS += -DHAVE_GUI