]>
Commit | Line | Data |
---|---|---|
a553f267 | 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 | |
4 | # the license. | |
5 | #----------------------------------------------------------------------------- | |
91c38cf7 | 6 | CC=gcc |
46cd4046 | 7 | CXX=g++ |
709b784c | 8 | #COMMON_FLAGS = -m32 |
022c8791 | 9 | |
7fe9b0b7 | 10 | VPATH = ../common |
46cd4046 | 11 | OBJDIR = obj |
7fe9b0b7 | 12 | |
a99c6a19 | 13 | LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread |
709b784c | 14 | LDFLAGS = $(COMMON_FLAGS) |
535b5a59 | 15 | CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g3 |
6658905f | 16 | |
022c8791 | 17 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall |
18 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
19 | ||
7fe9b0b7 | 20 | CMDSRCS = \ |
91c38cf7 | 21 | crc16.c \ |
22 | iso14443crc.c \ | |
7fe9b0b7 | 23 | data.c \ |
24 | graph.c \ | |
25 | ui.c \ | |
26 | cmddata.c \ | |
27 | cmdhf.c \ | |
28 | cmdhf14a.c \ | |
29 | cmdhf14b.c \ | |
30 | cmdhf15.c \ | |
31 | cmdhflegic.c \ | |
32 | cmdhw.c \ | |
33 | cmdlf.c \ | |
34 | cmdlfem4x.c \ | |
35 | cmdlfhid.c \ | |
36 | cmdlfti.c \ | |
37 | cmdparser.c \ | |
38 | cmdmain.c | |
39 | ||
46cd4046 | 40 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) |
7fe9b0b7 | 41 | |
022c8791 | 42 | ifeq ($(shell uname),Darwin) |
f39c4119 | 43 | CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers |
44 | QTLDLIBS = -framework QtGui -framework QtCore | |
45 | MOC = moc | |
022c8791 | 46 | endif |
f39c4119 | 47 | |
789d706a | 48 | ifneq ($(QTLDLIBS),) |
46cd4046 | 49 | QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o |
6658905f | 50 | CFLAGS += -DHAVE_GUI |
5ed2c738 | 51 | MOC ?= $(shell pkg-config --variable=moc_location QtCore) |
6658905f | 52 | LINK.o = $(LINK.cpp) |
53 | else | |
54 | QTGUI = guidummy.o | |
55 | endif | |
56 | ||
940a2012 | 57 | RM = rm -f |
58 | BINS = proxmark3 snooper cli flasher | |
46cd4046 | 59 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp |
940a2012 | 60 | |
61 | all: $(BINS) | |
6658905f | 62 | |
709b784c | 63 | all-static: LDLIBS:=-static $(LDLIBS) |
64 | all-static: snooper cli flasher | |
940a2012 | 65 | |
709b784c | 66 | proxmark3: LDLIBS+=$(QTLDLIBS) |
46cd4046 | 67 | proxmark3: $(OBJDIR)/proxmark3.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(QTGUI) |
68 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
3f030abe | 69 | |
46cd4046 | 70 | snooper: $(OBJDIR)/snooper.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(OBJDIR)/guidummy.o |
71 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
6658905f | 72 | |
46cd4046 | 73 | cli: $(OBJDIR)/cli.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(OBJDIR)/guidummy.o |
74 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
db917a16 | 75 | |
46cd4046 | 76 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/proxusb.o |
77 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
78 | ||
79 | $(OBJDIR)/%.o: %.c | |
80 | $(CC) $(CFLAGS) -c -o $@ $< | |
81 | ||
82 | $(OBJDIR)/%.o: %.cpp | |
83 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
06735128 | 84 | |
6658905f | 85 | proxguiqt.moc.cpp: proxguiqt.h |
86 | $(MOC) -o$@ $^ | |
87 | ||
88 | clean: | |
940a2012 | 89 | $(RM) $(CLEAN) |
6658905f | 90 | |
022c8791 | 91 | # must be run as root |
92 | install_kext: Info.plist | |
93 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
94 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
95 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
96 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
97 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
98 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
99 | touch /System/Library/Extensions | |
100 | @echo "*** You may need to reboot for the kext to take effect." | |
101 | ||
6658905f | 102 | .PHONY: all clean |