6 LDLIBS
= -L
/opt
/local
/lib
-L
/usr
/local
/lib
-lusb
-lreadline
-lpthread
7 LDFLAGS
= $(COMMON_FLAGS
)
8 CFLAGS
= -std
=gnu99
-I.
-I..
/include -I..
/common
-I
/opt
/local
/include -Wall
-Wno-unused-function
$(COMMON_FLAGS
) -g3
10 CXXFLAGS
= $(shell pkg-config
--cflags QtCore QtGui
2>/dev
/null
) -Wall
11 QTLDLIBS
= $(shell pkg-config
--libs QtCore QtGui
2>/dev
/null
)
33 CMDOBJS
= $(CMDSRCS
:.c
=.o
)
35 ifeq ($(shell uname
),Darwin
)
36 CXXFLAGS
= -I
/Library
/Frameworks
/QtGui.framework
/Versions
/Current
/Headers
-I
/Library
/Frameworks
/QtCore.framework
/Versions
/Current
/Headers
37 QTLDLIBS
= -framework QtGui
-framework QtCore
42 QTGUI
= proxgui.o proxguiqt.o proxguiqt.moc.o
44 MOC ?
= $(shell pkg-config
--variable
=moc_location QtCore
)
51 BINS
= proxmark3 snooper cli flasher
52 CLEAN
= cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe
*.o
$(CMDOBJS
) *.moc.
cpp
56 all-static
: LDLIBS
:=-static
$(LDLIBS
)
57 all-static
: snooper cli flasher
59 proxmark3
: LDLIBS
+=$(QTLDLIBS
)
60 proxmark3
: proxmark3.o
$(CMDOBJS
) proxusb.o
$(QTGUI
)
62 snooper
: snooper.o
$(CMDOBJS
) proxusb.o guidummy.o
64 cli
: cli.o
$(CMDOBJS
) proxusb.o guidummy.o
66 flasher
: flash.o flasher.o proxusb.o
68 proxguiqt.moc.
cpp: proxguiqt.h
75 install_kext
: Info.plist
76 mkdir
-p
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
77 cp Info.plist
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
78 chown
-R root
:wheel
/System
/Library
/Extensions
/Proxmark3.kext
79 chmod
755 /System
/Library
/Extensions
/Proxmark3.kext
/System
/Library
/Extensions
/Proxmark3.kext
/Contents
80 chmod
644 /System
/Library
/Extensions
/Proxmark3.kext
/Contents
/Info.plist
81 rm -rf
/System
/Library
/Caches
/com.apple.kext.caches
82 touch
/System
/Library
/Extensions
83 @echo
"*** You may need to reboot for the kext to take effect."