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
15 LDLIBS
= -L
/mingw
/lib
-L
/opt
/local
/lib
-L
/usr
/local
/lib ..
/liblua
/liblua.a
-lm
-lreadline
-lpthread
-lgdi32
16 LDFLAGS
= $(COMMON_FLAGS
)
17 CFLAGS
= -std
=c99
-I.
-I..
/include -I..
/common
-I
/mingw
/include -I
/opt
/local
/include -I..
/liblua
-Wall
$(COMMON_FLAGS
) -g
-O4
19 ifneq (,$(findstring MINGW
,$(platform
)))
20 CXXFLAGS
= -I
$(QTDIR
)/include -I
$(QTDIR
)/include/QtCore
-I
$(QTDIR
)/include/QtGui
21 QTLDLIBS
= -L
$(QTDIR
)/lib
-lQtCore4
-lQtGui4
22 MOC
= $(QTDIR
)/bin
/moc
24 else ifeq ($(platform
),Darwin
)
25 CXXFLAGS
= $(shell pkg-config
--cflags QtCore QtGui
2>/dev
/null
) -Wall
-O4
26 QTLDLIBS
= $(shell pkg-config
--libs QtCore QtGui
2>/dev
/null
)
27 MOC
= $(shell pkg-config
--variable
=moc_location QtCore
)
30 CXXFLAGS
= $(shell pkg-config
--cflags QtCore QtGui
2>/dev
/null
) -Wall
-O4
31 QTLDLIBS
= $(shell pkg-config
--libs QtCore QtGui
2>/dev
/null
)
32 MOC
= $(shell pkg-config
--variable
=moc_location QtCore
)
35 # 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.
36 #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
41 qtplatform
= $(shell $(MOC
) -v
)
42 ifneq (, $(findstring moc
5,$(qtplatform
)))
43 CXXFLAGS
= -I
$(QTDIR
)/include -I
$(QTDIR
)/include/QtCore
-I
$(QTDIR
)/include/QtGui
-I
$(QTDIR
)/include/QtWidgets
-I
/mingw
/include
44 QTLDLIBS
= -L
$(QTDIR
)/lib
-lQt5Core
-lQt5Gui
-lQt5Widgets
46 CXXFLAGS
= -I
$(QTDIR
)/include -I
$(QTDIR
)/include/QtCore
-I
$(QTDIR
)/include/QtGui
47 QTLDLIBS
= -L
$(QTDIR
)/lib
-lQtCore4
-lQtGui4
51 QTGUI
= $(OBJDIR
)/proxgui.o
$(OBJDIR
)/proxguiqt.o
$(OBJDIR
)/proxguiqt.moc.o
63 CMDSRCS
= nonce2key
/crapto1.c\
65 nonce2key
/nonce2key.c\
67 loclass
/cipherutils.c \
70 loclass
/elite_crack.c\
108 COREOBJS
= $(CORESRCS
:%.c
=$(OBJDIR
)/%.o
)
109 CMDOBJS
= $(CMDSRCS
:%.c
=$(OBJDIR
)/%.o
)
112 BINS
= proxmark3 flasher
#snooper cli
113 CLEAN
= cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe
$(CMDOBJS
) $(OBJDIR
)/*.o
*.o
*.moc.
cpp
115 all: lua_build
$(BINS
)
117 all-static
: LDLIBS
:=-static
$(LDLIBS
)
118 all-static
: snooper cli flasher
120 proxmark3
: LDLIBS
+=$(QTLDLIBS
)
121 proxmark3
: $(OBJDIR
)/proxmark3.o
$(COREOBJS
) $(CMDOBJS
) $(QTGUI
)
122 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
124 snooper
: $(OBJDIR
)/snooper.o
$(COREOBJS
) $(CMDOBJS
) $(OBJDIR
)/guidummy.o
125 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
127 cli
: $(OBJDIR
)/cli.o
$(COREOBJS
) $(CMDOBJS
) $(OBJDIR
)/guidummy.o
128 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
130 flasher
: $(OBJDIR
)/flash.o
$(OBJDIR
)/flasher.o
$(COREOBJS
)
131 $(CXX
) $(CXXFLAGS
) $^
$(LDLIBS
) -o
$@
134 $(CC
) $(CFLAGS
) -c
-o
$@
$<
137 $(CXX
) $(CXXFLAGS
) -c
-o
$@
$<
139 proxguiqt.moc.
cpp: proxguiqt.h
144 cd ..
/liblua
&& make
clean
147 $(TAR
) $(TARFLAGS
) ..
/proxmark3-
$(platform
)-bin.
tar $(BINS
:%=client
/%)
149 # must be run as root
150 install_kext
: Info.plist
151 mkdir
-p
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
152 cp Info.plist
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
153 chown
-R root
:wheel
/System
/Library
/Extensions
/Proxmark3.kext
154 chmod
755 /System
/Library
/Extensions
/Proxmark3.kext
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
155 chmod
644 /System
/Library
/Extensions
/Proxmark3.kext
/Contents
/Info.plist
156 rm -rf
/System
/Library
/Caches
/com.apple.kext.caches
157 touch
/System
/Library
/Extensions
158 @echo
"*** You may need to reboot for the kext to take effect."
161 @echo Compiling liblua
, using platform
$(LUAPLATFORM
)
162 cd ..
/liblua
&& make
$(LUAPLATFORM
)