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
-lm
-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
-I
/mingw
/include
23 QTLDLIBS
= -L
$(QTDIR
)/lib
-lQt5Core
-lQt5Gui
-lQt5Widgets
24 MOC
= $(QTDIR
)/bin
/moc
26 else ifeq ($(platform
),Darwin
)
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 CXXFLAGS
= $(shell pkg-config
--cflags QtCore QtGui
2>/dev
/null
) -Wall
-O4
33 QTLDLIBS
= $(shell pkg-config
--libs QtCore QtGui
2>/dev
/null
)
34 MOC
= $(shell pkg-config
--variable
=moc_location QtCore
)
37 # 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.
38 #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
44 QTGUI
= $(OBJDIR
)/proxgui.o
$(OBJDIR
)/proxguiqt.o
$(OBJDIR
)/proxguiqt.moc.o
56 CMDSRCS
= nonce2key
/crapto1.c\
58 nonce2key
/nonce2key.c\
60 loclass
/cipherutils.c \
63 loclass
/elite_crack.c\
101 COREOBJS
= $(CORESRCS
:%.c
=$(OBJDIR
)/%.o
)
102 CMDOBJS
= $(CMDSRCS
:%.c
=$(OBJDIR
)/%.o
)
105 BINS
= proxmark3 flasher
#snooper cli
106 CLEAN
= cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe
$(CMDOBJS
) $(OBJDIR
)/*.o
*.o
*.moc.
cpp
108 all: lua_build
$(BINS
)
110 all-static
: LDLIBS
:=-static
$(LDLIBS
)
111 all-static
: snooper cli flasher
113 proxmark3
: LDLIBS
+=$(QTLDLIBS
)
114 proxmark3
: $(OBJDIR
)/proxmark3.o
$(COREOBJS
) $(CMDOBJS
) $(QTGUI
)
115 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
117 snooper
: $(OBJDIR
)/snooper.o
$(COREOBJS
) $(CMDOBJS
) $(OBJDIR
)/guidummy.o
118 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
120 cli
: $(OBJDIR
)/cli.o
$(COREOBJS
) $(CMDOBJS
) $(OBJDIR
)/guidummy.o
121 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
123 flasher
: $(OBJDIR
)/flash.o
$(OBJDIR
)/flasher.o
$(COREOBJS
)
124 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
127 $(CC
) $(CFLAGS
) -c
-o
$@
$<
130 $(CXX
) $(CXXFLAGS
) -c
-o
$@
$<
132 proxguiqt.moc.
cpp: proxguiqt.h
137 cd ..
/liblua
&& make
clean
140 $(TAR
) $(TARFLAGS
) ..
/proxmark3-
$(platform
)-bin.
tar $(BINS
:%=client
/%)
142 # must be run as root
143 install_kext
: Info.plist
144 mkdir
-p
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
145 cp Info.plist
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
146 chown
-R root
:wheel
/System
/Library
/Extensions
/Proxmark3.kext
147 chmod
755 /System
/Library
/Extensions
/Proxmark3.kext
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
148 chmod
644 /System
/Library
/Extensions
/Proxmark3.kext
/Contents
/Info.plist
149 rm -rf
/System
/Library
/Caches
/com.apple.kext.caches
150 touch
/System
/Library
/Extensions
151 @echo
"*** You may need to reboot for the kext to take effect."
154 @echo Compiling liblua
, using platform
$(LUAPLATFORM
)
155 cd ..
/liblua
&& make
$(LUAPLATFORM
)