]>
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 | #----------------------------------------------------------------------------- | |
bd846386 | 6 | include ../common/Makefile.common |
7 | ||
a0f33b66 | 8 | CC = gcc |
9 | CXX = g++ | |
709b784c | 10 | #COMMON_FLAGS = -m32 |
3130ba4b | 11 | COMMON_FLAGS = -std=c99 -O3 -mpopcnt -march=native |
12 | #VPATH = ../common ../zlib | |
46cd4046 | 13 | OBJDIR = obj |
7fe9b0b7 | 14 | |
fd955256 | 15 | LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm |
9783989b | 16 | LUALIB = ../liblua/liblua.a |
3130ba4b | 17 | #LDFLAGS = $(COMMON_FLAGS) |
18 | CFLAGS = $(COMMON_FLAGS) -I. -I../include -I../common -I../zlib -I/opt/local/include -I../liblua -Wall -g | |
30a46ed8 | 19 | LUAPLATFORM = generic |
8c04722d | 20 | |
fd955256 | 21 | ifneq (,$(findstring MINGW,$(platform))) |
22 | LDLIBS += -L/mingw/lib -lgdi32 | |
23 | CFLAGS += -I/mingw/include | |
8c04722d | 24 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui |
25 | MOC = $(QTDIR)/bin/moc | |
26 | LUAPLATFORM = mingw | |
27 | ifneq ($(wildcard $(QTDIR)/include/QtWidgets),) | |
28 | CXXFLAGS += -I$(QTDIR)/include/QtWidgets | |
29 | QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets | |
30 | else | |
31 | QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 | |
32 | endif | |
805cd07e | 33 | |
34 | # QT version, 4 or 5 | |
35 | qtplatform = $(shell $(MOC) -v) | |
36 | ifneq (, $(findstring moc 5,$(qtplatform))) | |
37 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include | |
38 | QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets | |
39 | else | |
40 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui | |
41 | QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 | |
42 | endif | |
43 | ||
8691f5b7 | 44 | else ifeq ($(platform),Darwin) |
25606bd7 | 45 | LDLIBS = -L/opt/local/lib -lreadline -lpthread -lm |
b0c2f708 | 46 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 |
8c04722d | 47 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) |
48 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
49 | LUAPLATFORM = macosx | |
8691f5b7 | 50 | else |
b0c2f708 | 51 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 |
8c04722d | 52 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) |
9783989b | 53 | LUALIB += -ldl |
8c04722d | 54 | MOC = $(shell pkg-config --variable=moc_location QtCore) |
8c04722d | 55 | # 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. |
56 | #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc | |
57 | LUAPLATFORM = linux | |
62b1302c | 58 | endif |
59 | ||
245e844e | 60 | ifneq ($(QTLDLIBS),) |
8c04722d | 61 | QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o |
62 | CFLAGS += -DHAVE_GUI | |
63 | LINK.o = $(LINK.cpp) | |
245e844e | 64 | else |
8c04722d | 65 | QTGUI = guidummy.o |
245e844e | 66 | endif |
62b1302c | 67 | |
759c16b3 | 68 | CORESRCS = uart.c \ |
69 | util.c \ | |
70 | sleep.c | |
71 | ||
72 | ||
3130ba4b | 73 | CMDSRCS = nonce2key/crapto1.c \ |
74 | nonce2key/crypto1.c \ | |
75 | nonce2key/nonce2key.c \ | |
76 | nonce2key/crypto1_bs.c \ | |
0a886a1d | 77 | loclass/cipher.c \ |
78 | loclass/cipherutils.c \ | |
79 | loclass/des.c \ | |
80 | loclass/ikeys.c \ | |
3130ba4b | 81 | loclass/elite_crack.c \ |
82 | loclass/fileutils.c \ | |
83 | mifarehost.c \ | |
84 | parity.c \ | |
3d83b58b | 85 | crc.c \ |
91c38cf7 | 86 | crc16.c \ |
3ee8c808 | 87 | crc64.c \ |
91c38cf7 | 88 | iso14443crc.c \ |
9455b51c | 89 | iso15693tools.c \ |
7fe9b0b7 | 90 | data.c \ |
91 | graph.c \ | |
92 | ui.c \ | |
93 | cmddata.c \ | |
eb191de6 | 94 | lfdemod.c \ |
7fe9b0b7 | 95 | cmdhf.c \ |
96 | cmdhf14a.c \ | |
97 | cmdhf14b.c \ | |
98 | cmdhf15.c \ | |
5acd09bd | 99 | cmdhfepa.c \ |
7fe9b0b7 | 100 | cmdhflegic.c \ |
cee5a30d | 101 | cmdhficlass.c \ |
9ca155ba | 102 | cmdhfmf.c \ |
5ee70129 | 103 | cmdhfmfu.c \ |
0a886a1d | 104 | cmdhfmfhard.c \ |
0ec548dc | 105 | cmdhfmfdes.c \ |
106 | cmdhftopaz.c \ | |
7fe9b0b7 | 107 | cmdhw.c \ |
108 | cmdlf.c \ | |
a1f3bb12 | 109 | cmdlfio.c \ |
a66fca86 | 110 | cmdlfhid.c \ |
db25599d | 111 | cmdlfawid.c \ |
28fdb04f | 112 | cmdlfem4x.c \ |
db09cb3a | 113 | cmdlfhitag.c \ |
7fe9b0b7 | 114 | cmdlfti.c \ |
115 | cmdparser.c \ | |
902cb3c0 | 116 | cmdmain.c \ |
54a942b0 | 117 | cmdlft55xx.c \ |
3130ba4b | 118 | cmdlfpcf7931.c \ |
119 | cmdlfviking.c \ | |
120 | cmdlfpresco.c \ | |
121 | cmdlfpyramid.c \ | |
122 | cmdlfguard.c \ | |
123 | pm3_binlib.c \ | |
124 | scripting.c \ | |
125 | cmdscript.c \ | |
126 | pm3_bitlib.c \ | |
127 | aes.c \ | |
128 | protocols.c \ | |
129 | sha1.c \ | |
130 | sha256.c \ | |
131 | cmdcrc.c \ | |
132 | reveng/preset.c \ | |
133 | reveng/reveng.c \ | |
134 | reveng/cli.c \ | |
135 | reveng/bmpbit.c \ | |
136 | reveng/model.c \ | |
137 | reveng/poly.c \ | |
138 | reveng/getopt.c \ | |
139 | tea.c \ | |
140 | prng.c \ | |
141 | radixsort.c \ | |
eb891c38 | 142 | bucketsort.c |
9783989b | 143 | ZLIBSRCS = deflate.c adler32.c trees.c zutil.c inflate.c inffast.c inftrees.c |
144 | ZLIB_FLAGS = -DZ_SOLO -DZ_PREFIX -DNO_GZIP -DZLIB_PM3_TUNED | |
145 | #-DDEBUG -Dverbose=1 | |
a0655c45 | 146 | |
759c16b3 | 147 | COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o) |
46cd4046 | 148 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) |
9783989b | 149 | ZLIBOBJS = $(ZLIBSRCS:%.c=$(OBJDIR)/%.o) |
7fe9b0b7 | 150 | |
940a2012 | 151 | RM = rm -f |
3130ba4b | 152 | BINS = proxmark3 flasher fpga_compress |
9783989b | 153 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe fpga_compress fpga_compress.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp |
940a2012 | 154 | |
806dc075 | 155 | all: lua_build $(BINS) |
6658905f | 156 | |
709b784c | 157 | all-static: LDLIBS:=-static $(LDLIBS) |
3130ba4b | 158 | all-static: $(BINS) |
940a2012 | 159 | |
9783989b | 160 | proxmark3: LDLIBS+=$(LUALIB) $(QTLDLIBS) |
759c16b3 | 161 | proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI) |
46cd4046 | 162 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
3f030abe | 163 | |
759c16b3 | 164 | snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 165 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
6658905f | 166 | |
759c16b3 | 167 | cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 168 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
db917a16 | 169 | |
759c16b3 | 170 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS) |
46cd4046 | 171 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
172 | ||
9783989b | 173 | fpga_compress: $(OBJDIR)/fpga_compress.o $(ZLIBOBJS) |
174 | $(CXX) $(CXXFLAGS) $(ZLIB_FLAGS) $^ $(LDLIBS) -o $@ | |
175 | ||
46cd4046 | 176 | $(OBJDIR)/%.o: %.c |
9783989b | 177 | $(CC) $(CFLAGS) $(ZLIB_FLAGS) -c -o $@ $< |
46cd4046 | 178 | |
179 | $(OBJDIR)/%.o: %.cpp | |
180 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
06735128 | 181 | |
6658905f | 182 | proxguiqt.moc.cpp: proxguiqt.h |
183 | $(MOC) -o$@ $^ | |
184 | ||
185 | clean: | |
940a2012 | 186 | $(RM) $(CLEAN) |
3a4c72fe | 187 | cd ../liblua && make clean |
6658905f | 188 | |
bd846386 | 189 | tarbin: $(BINS) |
190 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
191 | ||
806dc075 | 192 | lua_build: |
30a46ed8 | 193 | @echo Compiling liblua, using platform $(LUAPLATFORM) |
194 | cd ../liblua && make $(LUAPLATFORM) | |
806dc075 | 195 | |
6658905f | 196 | .PHONY: all clean |