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