]>
Commit | Line | Data |
---|---|---|
940a2012 | 1 | WINCC=c:\mingw\bin\gcc |
2 | ||
709b784c | 3 | #COMMON_FLAGS = -m32 |
022c8791 | 4 | |
a99c6a19 | 5 | LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread |
709b784c | 6 | LDFLAGS = $(COMMON_FLAGS) |
6e4d4ee6 | 7 | CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g3 |
6658905f | 8 | |
940a2012 | 9 | WINLIBS = -lgdi32 -lsetupapi |
022c8791 | 10 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall |
11 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
12 | ||
1e1b3030 | 13 | ifeq ($(shell echo ""),) |
14 | ||
022c8791 | 15 | ifeq ($(shell uname),Darwin) |
f39c4119 | 16 | CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers |
17 | QTLDLIBS = -framework QtGui -framework QtCore | |
18 | MOC = moc | |
022c8791 | 19 | endif |
f39c4119 | 20 | |
789d706a | 21 | ifneq ($(QTLDLIBS),) |
6658905f | 22 | QTGUI = proxgui.o proxguiqt.o proxguiqt.moc.o |
23 | CFLAGS += -DHAVE_GUI | |
5ed2c738 | 24 | MOC ?= $(shell pkg-config --variable=moc_location QtCore) |
6658905f | 25 | LINK.o = $(LINK.cpp) |
26 | else | |
27 | QTGUI = guidummy.o | |
28 | endif | |
29 | ||
940a2012 | 30 | RM = rm -f |
31 | BINS = proxmark3 snooper cli flasher | |
32 | CLEAN = cli flasher proxmark3 snooper *.o *.moc.cpp | |
33 | else | |
34 | RM = del | |
35 | BINS = prox.exe | |
36 | CLEAN = prox.exe | |
37 | endif | |
38 | ||
39 | all: $(BINS) | |
6658905f | 40 | |
709b784c | 41 | all-static: LDLIBS:=-static $(LDLIBS) |
42 | all-static: snooper cli flasher | |
43 | ||
6e4d4ee6 | 44 | prox.exe: prox.c wingui.c command.c flash.c |
45 | $(WINCC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c flash.c $(WINLIBS) | |
940a2012 | 46 | |
709b784c | 47 | proxmark3: LDLIBS+=$(QTLDLIBS) |
6658905f | 48 | proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI) |
49 | ||
a99c6a19 | 50 | command.o: command.c |
3f030abe | 51 | |
6658905f | 52 | snooper: snooper.o gui.o command.o usb.o guidummy.o |
53 | ||
db917a16 | 54 | cli: cli.o gui.o command.o usb.o guidummy.o |
55 | ||
6e4d4ee6 | 56 | flasher: flash.o flasher.o usb.o |
06735128 | 57 | |
6658905f | 58 | proxguiqt.moc.cpp: proxguiqt.h |
59 | $(MOC) -o$@ $^ | |
60 | ||
61 | clean: | |
940a2012 | 62 | $(RM) $(CLEAN) |
6658905f | 63 | |
022c8791 | 64 | # must be run as root |
65 | install_kext: Info.plist | |
66 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
67 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
68 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
69 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
70 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
71 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
72 | touch /System/Library/Extensions | |
73 | @echo "*** You may need to reboot for the kext to take effect." | |
74 | ||
6658905f | 75 | .PHONY: all clean |