]>
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=c99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O4 | |
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 = $(QTDIR)/moc | |
23 | #################################################### | |
24 | # Disabled gui for Windows, can someone with more | |
25 | # knowledge about QT fix this problem?? | |
26 | #################################################### | |
27 | QTLDLIBS= | |
28 | else ifeq ($(platform),Darwin) | |
29 | CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers | |
30 | QTLDLIBS = -framework QtGui -framework QtCore | |
31 | MOC = moc | |
32 | else | |
33 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 | |
34 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
35 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
36 | endif | |
37 | ||
38 | ||
39 | ifneq ($(QTLDLIBS),) | |
40 | QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o | |
41 | CFLAGS += -DHAVE_GUI | |
42 | LINK.o = $(LINK.cpp) | |
43 | else | |
44 | QTGUI = guidummy.o | |
45 | endif | |
46 | ||
47 | CMDSRCS = \ | |
48 | nonce2key/crapto1.c\ | |
49 | nonce2key/crypto1.c\ | |
50 | nonce2key/nonce2key.c\ | |
51 | mifarehost.c\ | |
52 | crc16.c \ | |
53 | iso14443crc.c \ | |
54 | iso15693tools.c \ | |
55 | data.c \ | |
56 | graph.c \ | |
57 | ui.c \ | |
58 | uart.c \ | |
59 | util.c \ | |
60 | cmddata.c \ | |
61 | cmdhf.c \ | |
62 | cmdhf14a.c \ | |
63 | cmdhf14b.c \ | |
64 | cmdhf15.c \ | |
65 | cmdhfepa.c \ | |
66 | cmdhflegic.c \ | |
67 | cmdhficlass.c \ | |
68 | cmdhfmf.c \ | |
69 | cmdhw.c \ | |
70 | cmdlf.c \ | |
71 | cmdlfhid.c \ | |
72 | cmdlfem4x.c \ | |
73 | cmdlfhitag.c \ | |
74 | cmdlfti.c \ | |
75 | cmdparser.c \ | |
76 | cmdmain.c \ | |
77 | cmdlft55xx.c \ | |
78 | cmdlfpcf7931.c | |
79 | ||
80 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) | |
81 | ||
82 | RM = rm -f | |
83 | BINS = proxmark3 flasher #snooper cli | |
84 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp | |
85 | ||
86 | all: $(BINS) | |
87 | ||
88 | all-static: LDLIBS:=-static $(LDLIBS) | |
89 | all-static: snooper cli flasher | |
90 | ||
91 | proxmark3: LDLIBS+=$(QTLDLIBS) | |
92 | proxmark3: $(OBJDIR)/proxmark3.o $(CMDOBJS) $(OBJDIR)/uart.o $(QTGUI) | |
93 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
94 | ||
95 | snooper: $(OBJDIR)/snooper.o $(CMDOBJS) $(OBJDIR)/uart.o $(OBJDIR)/guidummy.o | |
96 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
97 | ||
98 | cli: $(OBJDIR)/cli.o $(CMDOBJS) $(OBJDIR)/uart.o $(OBJDIR)/guidummy.o | |
99 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
100 | ||
101 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/uart.o | |
102 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
103 | ||
104 | $(OBJDIR)/%.o: %.c | |
105 | $(CC) $(CFLAGS) -c -o $@ $< | |
106 | ||
107 | $(OBJDIR)/%.o: %.cpp | |
108 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
109 | ||
110 | proxguiqt.moc.cpp: proxguiqt.h | |
111 | $(MOC) -o$@ $^ | |
112 | ||
113 | clean: | |
114 | $(RM) $(CLEAN) | |
115 | ||
116 | tarbin: $(BINS) | |
117 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
118 | ||
119 | # must be run as root | |
120 | install_kext: Info.plist | |
121 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
122 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
123 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
124 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
125 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
126 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
127 | touch /System/Library/Extensions | |
128 | @echo "*** You may need to reboot for the kext to take effect." | |
129 | ||
130 | .PHONY: all clean |