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