]>
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 | ||
9 | CC=gcc | |
10 | CXX=g++ | |
11 | #COMMON_FLAGS = -m32 | |
12 | VPATH = ../common | |
13 | OBJDIR = obj | |
14 | ||
15 | LDLIBS = -L/mingw/lib -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lm -lreadline -lpthread -lgdi32 | |
16 | LDFLAGS = $(COMMON_FLAGS) | |
17 | CFLAGS = -std=c99 -I. -I../include -I../common -I/mingw/include -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4 | |
18 | LUAPLATFORM = generic | |
19 | ||
20 | ifneq (,$(findstring MINGW,$(platform))) | |
21 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui | |
22 | MOC = $(QTDIR)/bin/moc | |
23 | LUAPLATFORM = mingw | |
24 | ifneq ($(wildcard $(QTDIR)/include/QtWidgets),) | |
25 | CXXFLAGS += -I$(QTDIR)/include/QtWidgets | |
26 | QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets | |
27 | else | |
28 | QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 | |
29 | endif | |
30 | else ifeq ($(platform),Darwin) | |
31 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 | |
32 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
33 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
34 | LUAPLATFORM = macosx | |
35 | else | |
36 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 | |
37 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
38 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
39 | LDLIBS += -ldl | |
40 | # Below is a variant you can use if you have problems compiling with QT5 on ubuntu. see http://www.proxmark.org/forum/viewtopic.php?id=1661 for more info. | |
41 | #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc | |
42 | LUAPLATFORM = linux | |
43 | endif | |
44 | ||
45 | # QT version, 4 or 5 | |
46 | qtplatform = $(shell $(MOC) -v) | |
47 | ifneq (, $(findstring moc 5,$(qtplatform))) | |
48 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include | |
49 | QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets | |
50 | else | |
51 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui | |
52 | QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 | |
53 | endif | |
54 | ||
55 | ifneq ($(QTLDLIBS),) | |
56 | QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o | |
57 | CFLAGS += -DHAVE_GUI | |
58 | LINK.o = $(LINK.cpp) | |
59 | else | |
60 | QTGUI = guidummy.o | |
61 | endif | |
62 | ||
63 | CORESRCS = uart.c \ | |
64 | util.c \ | |
65 | sleep.c | |
66 | ||
67 | ||
68 | CMDSRCS = nonce2key/crapto1.c\ | |
69 | nonce2key/crypto1.c\ | |
70 | nonce2key/nonce2key.c\ | |
71 | loclass/cipher.c \ | |
72 | loclass/cipherutils.c \ | |
73 | loclass/des.c \ | |
74 | loclass/ikeys.c \ | |
75 | loclass/elite_crack.c\ | |
76 | loclass/fileutils.c\ | |
77 | mifarehost.c\ | |
78 | crc.c \ | |
79 | crc16.c \ | |
80 | crc64.c \ | |
81 | iso14443crc.c \ | |
82 | iso15693tools.c \ | |
83 | data.c \ | |
84 | graph.c \ | |
85 | ui.c \ | |
86 | cmddata.c \ | |
87 | lfdemod.c \ | |
88 | cmdhf.c \ | |
89 | cmdhf14a.c \ | |
90 | cmdhf14b.c \ | |
91 | cmdhf15.c \ | |
92 | cmdhfepa.c \ | |
93 | cmdhflegic.c \ | |
94 | cmdhficlass.c \ | |
95 | cmdhfmf.c \ | |
96 | cmdhfmfu.c \ | |
97 | cmdhfmfdes.c \ | |
98 | cmdhftopaz.c \ | |
99 | cmdhw.c \ | |
100 | cmdlf.c \ | |
101 | cmdlfio.c \ | |
102 | cmdlfhid.c \ | |
103 | cmdlfem4x.c \ | |
104 | cmdlfhitag.c \ | |
105 | cmdlfti.c \ | |
106 | cmdparser.c \ | |
107 | cmdmain.c \ | |
108 | cmdlft55xx.c \ | |
109 | cmdlfpcf7931.c\ | |
110 | pm3_binlib.c\ | |
111 | scripting.c\ | |
112 | cmdscript.c\ | |
113 | pm3_bitlib.c\ | |
114 | aes.c\ | |
115 | protocols.c\ | |
116 | ||
117 | ||
118 | COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o) | |
119 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) | |
120 | ||
121 | RM = rm -f | |
122 | BINS = proxmark3 flasher #snooper cli | |
123 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp | |
124 | ||
125 | all: lua_build $(BINS) | |
126 | ||
127 | all-static: LDLIBS:=-static $(LDLIBS) | |
128 | all-static: snooper cli flasher | |
129 | ||
130 | proxmark3: LDLIBS+=$(QTLDLIBS) | |
131 | proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI) | |
132 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
133 | ||
134 | snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o | |
135 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
136 | ||
137 | cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o | |
138 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
139 | ||
140 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS) | |
141 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
142 | ||
143 | $(OBJDIR)/%.o: %.c | |
144 | $(CC) $(CFLAGS) -c -o $@ $< | |
145 | ||
146 | $(OBJDIR)/%.o: %.cpp | |
147 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
148 | ||
149 | proxguiqt.moc.cpp: proxguiqt.h | |
150 | $(MOC) -o$@ $^ | |
151 | ||
152 | clean: | |
153 | $(RM) $(CLEAN) | |
154 | cd ../liblua && make clean | |
155 | ||
156 | tarbin: $(BINS) | |
157 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
158 | ||
159 | # must be run as root | |
160 | install_kext: Info.plist | |
161 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
162 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
163 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
164 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
165 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
166 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
167 | touch /System/Library/Extensions | |
168 | @echo "*** You may need to reboot for the kext to take effect." | |
169 | ||
170 | lua_build: | |
171 | @echo Compiling liblua, using platform $(LUAPLATFORM) | |
172 | cd ../liblua && make $(LUAPLATFORM) | |
173 | ||
174 | .PHONY: all clean |