1 #-----------------------------------------------------------------------------
 
   2 # This code is licensed to you under the terms of the GNU GPL, version 2 or,
 
   3 # at your option, any later version. See the LICENSE.txt file for the text of
 
   5 #-----------------------------------------------------------------------------
 
   6 include ../common/Makefile.common
 
  16 LDLIBS = -L/mingw/lib -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a  -lreadline -lpthread -lcrypto -lgdi32
 
  17 LDFLAGS = $(COMMON_FLAGS)
 
  18 CFLAGS = -std=c99  -I. -I../include -I../common -I/mingw/include -I/opt/local/include -I../liblua  -Wall $(COMMON_FLAGS) -g -O4  $(ICE_FLAGS)
 
  21 ifneq (,$(findstring MINGW,$(platform)))
 
  22 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets 
 
  23 QTLDLIBS = -L$(QTDIR)/lib  -lQt5Core -lQt5Gui -lQt5Widgets 
 
  24 MOC = $(QTDIR)/bin/moc
 
  27 CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
 
  28 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
 
  29 MOC = $(shell pkg-config --variable=moc_location QtCore)
 
  32 # Below is a variant you can use if you have problems compiling with QT5 on ubuntu. see http://www.proxmark.org/forum/viewtopic.php?id=1661 for more info. 
 
  33 #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
 
  39 QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
 
  51 CMDSRCS =       nonce2key/crapto1.c\
 
  53                 nonce2key/nonce2key.c\
 
  55                         loclass/cipherutils.c \
 
  58                         loclass/elite_crack.c\
 
  96 COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
 
  97 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
 
 100 BINS = proxmark3 flasher #snooper cli
 
 101 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
 
 103 all: lua_build $(BINS) 
 
 105 all-static: LDLIBS:=-static $(LDLIBS)
 
 106 all-static: snooper cli flasher
 
 108 proxmark3: LDLIBS+=$(QTLDLIBS)
 
 109 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
 
 110         $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
 
 112 snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
 
 113         $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
 
 115 cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
 
 116         $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
 
 118 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
 
 119         $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
 
 122         $(CC) $(CFLAGS) -c -o $@ $<
 
 125         $(CXX) $(CXXFLAGS) -c -o $@ $<
 
 127 proxguiqt.moc.cpp: proxguiqt.h
 
 132         cd ../liblua && make clean
 
 135         $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
 
 137 # must be run as root
 
 138 install_kext: Info.plist
 
 139         mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
 
 140         cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
 
 141         chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
 
 142         chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
 
 143         chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
 
 144         rm -rf /System/Library/Caches/com.apple.kext.caches
 
 145         touch /System/Library/Extensions
 
 146         @echo "*** You may need to reboot for the kext to take effect."
 
 149         @echo Compiling liblua, using platform $(LUAPLATFORM)
 
 150         cd ../liblua && make $(LUAPLATFORM)