2009-12-22 20:52:02 +08:00
|
|
|
WINCC=c:\mingw\bin\gcc
|
|
|
|
|
2009-09-11 10:25:48 +08:00
|
|
|
#COMMON_FLAGS = -m32
|
2009-12-22 20:54:24 +08:00
|
|
|
|
2009-12-22 20:42:54 +08:00
|
|
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
|
2009-09-11 10:25:48 +08:00
|
|
|
LDFLAGS = $(COMMON_FLAGS)
|
2010-01-04 13:11:08 +08:00
|
|
|
CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g3
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-12-22 20:52:02 +08:00
|
|
|
WINLIBS = -lgdi32 -lsetupapi
|
2009-12-22 20:54:24 +08:00
|
|
|
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall
|
|
|
|
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
|
|
|
|
2010-01-04 11:08:45 +08:00
|
|
|
ifeq ($(shell echo ""),)
|
|
|
|
|
2009-12-22 20:54:24 +08:00
|
|
|
ifeq ($(shell uname),Darwin)
|
2009-12-30 08:49:27 +08:00
|
|
|
CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers
|
|
|
|
QTLDLIBS = -framework QtGui -framework QtCore
|
|
|
|
MOC = moc
|
2009-12-22 20:54:24 +08:00
|
|
|
endif
|
2009-12-30 08:49:27 +08:00
|
|
|
|
2009-10-12 02:40:44 +08:00
|
|
|
ifneq ($(QTLDLIBS),)
|
2009-04-09 14:43:20 +08:00
|
|
|
QTGUI = proxgui.o proxguiqt.o proxguiqt.moc.o
|
|
|
|
CFLAGS += -DHAVE_GUI
|
2009-12-28 07:27:29 +08:00
|
|
|
MOC ?= $(shell pkg-config --variable=moc_location QtCore)
|
2009-04-09 14:43:20 +08:00
|
|
|
LINK.o = $(LINK.cpp)
|
|
|
|
else
|
|
|
|
QTGUI = guidummy.o
|
|
|
|
endif
|
|
|
|
|
2009-12-22 20:52:02 +08:00
|
|
|
RM = rm -f
|
|
|
|
BINS = proxmark3 snooper cli flasher
|
|
|
|
CLEAN = cli flasher proxmark3 snooper *.o *.moc.cpp
|
|
|
|
else
|
|
|
|
RM = del
|
|
|
|
BINS = prox.exe
|
|
|
|
CLEAN = prox.exe
|
|
|
|
endif
|
|
|
|
|
|
|
|
all: $(BINS)
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-09-11 10:25:48 +08:00
|
|
|
all-static: LDLIBS:=-static $(LDLIBS)
|
|
|
|
all-static: snooper cli flasher
|
|
|
|
|
2010-01-04 13:11:08 +08:00
|
|
|
prox.exe: prox.c wingui.c command.c flash.c
|
|
|
|
$(WINCC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c flash.c $(WINLIBS)
|
2009-12-22 20:52:02 +08:00
|
|
|
|
2009-09-11 10:25:48 +08:00
|
|
|
proxmark3: LDLIBS+=$(QTLDLIBS)
|
2009-04-09 14:43:20 +08:00
|
|
|
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
|
|
|
|
|
2009-12-22 20:42:54 +08:00
|
|
|
command.o: command.c
|
2009-07-02 23:12:49 +08:00
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
snooper: snooper.o gui.o command.o usb.o guidummy.o
|
|
|
|
|
2009-06-26 18:20:55 +08:00
|
|
|
cli: cli.o gui.o command.o usb.o guidummy.o
|
|
|
|
|
2010-01-04 13:11:08 +08:00
|
|
|
flasher: flash.o flasher.o usb.o
|
2009-06-29 06:13:04 +08:00
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
proxguiqt.moc.cpp: proxguiqt.h
|
|
|
|
$(MOC) -o$@ $^
|
|
|
|
|
|
|
|
clean:
|
2009-12-22 20:52:02 +08:00
|
|
|
$(RM) $(CLEAN)
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-12-22 20:54:24 +08:00
|
|
|
# must be run as root
|
|
|
|
install_kext: Info.plist
|
|
|
|
mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
|
|
|
|
chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
|
|
|
|
rm -rf /System/Library/Caches/com.apple.kext.caches
|
|
|
|
touch /System/Library/Extensions
|
|
|
|
@echo "*** You may need to reboot for the kext to take effect."
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
.PHONY: all clean
|