X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/9783989b400be4ed19cbf12defa4d6dbcdcd9fc8..0de8e3874d6524379550a50a4d9c29faf2d239ea:/client/Makefile diff --git a/client/Makefile b/client/Makefile index 33e02b3b..bcd59397 100644 --- a/client/Makefile +++ b/client/Makefile @@ -53,6 +53,20 @@ else 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 -O4 + 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 @@ -101,9 +115,11 @@ CMDSRCS = nonce2key/crapto1.c\ cmdlf.c \ cmdlfio.c \ cmdlfhid.c \ + cmdlfawid.c \ cmdlfem4x.c \ cmdlfhitag.c \ cmdlfti.c \ + cmdlfviking.c\ cmdparser.c \ cmdmain.c \ cmdlft55xx.c \ @@ -115,6 +131,7 @@ CMDSRCS = nonce2key/crapto1.c\ aes.c\ protocols.c\ sha1.c\ + sha256.c\ cmdcrc.c\ reveng/reveng.c\ reveng/cli.c\