]>
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 | ||
806dc075 | 8 | |
91c38cf7 | 9 | CC=gcc |
46cd4046 | 10 | CXX=g++ |
709b784c | 11 | #COMMON_FLAGS = -m32 |
022c8791 | 12 | |
7fe9b0b7 | 13 | VPATH = ../common |
46cd4046 | 14 | OBJDIR = obj |
7fe9b0b7 | 15 | |
7bd30f12 | 16 | LDLIBS = -L/mingw/lib -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lm -lreadline -lpthread -lcrypto -lgdi32 |
709b784c | 17 | LDFLAGS = $(COMMON_FLAGS) |
225ccb91 | 18 | CFLAGS = -std=c99 -lcrypto -I. -I../include -I../common -I/mingw/include -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4 |
30a46ed8 | 19 | LUAPLATFORM = generic |
6658905f | 20 | |
8691f5b7 | 21 | ifneq (,$(findstring MINGW,$(platform))) |
7bd30f12 | 22 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include |
f38a1528 | 23 | QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets |
829fb342 | 24 | MOC = $(QTDIR)/bin/moc |
30a46ed8 | 25 | LUAPLATFORM = mingw |
8691f5b7 | 26 | else ifeq ($(platform),Darwin) |
a66fca86 AD |
27 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 |
28 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
29 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
3a4c72fe | 30 | LUAPLATFORM = macosx |
8691f5b7 | 31 | else |
28fdb04f | 32 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 |
8691f5b7 | 33 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) |
34 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
eaea9de9 | 35 | LDLIBS += -ldl |
36 | ||
a763eb21 | 37 | # 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. |
38 | #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc | |
30a46ed8 | 39 | LUAPLATFORM = linux |
62b1302c | 40 | endif |
41 | ||
8691f5b7 | 42 | |
245e844e | 43 | ifneq ($(QTLDLIBS),) |
44 | QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o | |
45 | CFLAGS += -DHAVE_GUI | |
46 | LINK.o = $(LINK.cpp) | |
47 | else | |
62b1302c | 48 | QTGUI = guidummy.o |
245e844e | 49 | endif |
62b1302c | 50 | |
759c16b3 | 51 | CORESRCS = uart.c \ |
52 | util.c \ | |
53 | sleep.c | |
54 | ||
55 | ||
56 | CMDSRCS = nonce2key/crapto1.c\ | |
99a71418 | 57 | nonce2key/crypto1.c\ |
58 | nonce2key/nonce2key.c\ | |
f38a1528 | 59 | loclass/cipher.c \ |
60 | loclass/cipherutils.c \ | |
61 | loclass/des.c \ | |
62 | loclass/ikeys.c \ | |
6ff6ade2 | 63 | loclass/elite_crack.c \ |
64 | loclass/fileutils.c \ | |
65 | loclass/hash1_brute.c \ | |
66 | mifarehost.c \ | |
91c38cf7 | 67 | crc16.c \ |
68 | iso14443crc.c \ | |
9455b51c | 69 | iso15693tools.c \ |
7fe9b0b7 | 70 | data.c \ |
71 | graph.c \ | |
72 | ui.c \ | |
73 | cmddata.c \ | |
6ff6ade2 | 74 | lfdemod.c \ |
7fe9b0b7 | 75 | cmdhf.c \ |
76 | cmdhf14a.c \ | |
77 | cmdhf14b.c \ | |
78 | cmdhf15.c \ | |
5acd09bd | 79 | cmdhfepa.c \ |
7fe9b0b7 | 80 | cmdhflegic.c \ |
cee5a30d | 81 | cmdhficlass.c \ |
9ca155ba | 82 | cmdhfmf.c \ |
f38a1528 | 83 | cmdhfmfu.c \ |
84 | cmdhfmfdes.c \ | |
85 | cmdhfdes.c \ | |
7fe9b0b7 | 86 | cmdhw.c \ |
87 | cmdlf.c \ | |
f5ed4d12 | 88 | cmdlfawid26.c \ |
a1f3bb12 | 89 | cmdlfio.c \ |
a66fca86 | 90 | cmdlfhid.c \ |
28fdb04f | 91 | cmdlfem4x.c \ |
db09cb3a | 92 | cmdlfhitag.c \ |
7fe9b0b7 | 93 | cmdlfti.c \ |
94 | cmdparser.c \ | |
902cb3c0 | 95 | cmdmain.c \ |
54a942b0 | 96 | cmdlft55xx.c \ |
806dc075 | 97 | cmdlfpcf7931.c\ |
f057bddb | 98 | pm3_binlib.c\ |
a0655c45 | 99 | scripting.c\ |
806dc075 | 100 | cmdscript.c\ |
77cd612f | 101 | pm3_bitlib.c\ |
28fdb04f | 102 | |
a0655c45 | 103 | |
759c16b3 | 104 | COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o) |
46cd4046 | 105 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) |
7fe9b0b7 | 106 | |
940a2012 | 107 | RM = rm -f |
902cb3c0 | 108 | BINS = proxmark3 flasher #snooper cli |
46cd4046 | 109 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp |
940a2012 | 110 | |
806dc075 | 111 | all: lua_build $(BINS) |
6658905f | 112 | |
709b784c | 113 | all-static: LDLIBS:=-static $(LDLIBS) |
114 | all-static: snooper cli flasher | |
940a2012 | 115 | |
709b784c | 116 | proxmark3: LDLIBS+=$(QTLDLIBS) |
759c16b3 | 117 | proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI) |
46cd4046 | 118 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
3f030abe | 119 | |
759c16b3 | 120 | snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 121 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
6658905f | 122 | |
759c16b3 | 123 | cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 124 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
db917a16 | 125 | |
759c16b3 | 126 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS) |
46cd4046 | 127 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
128 | ||
129 | $(OBJDIR)/%.o: %.c | |
130 | $(CC) $(CFLAGS) -c -o $@ $< | |
131 | ||
132 | $(OBJDIR)/%.o: %.cpp | |
133 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
06735128 | 134 | |
6658905f | 135 | proxguiqt.moc.cpp: proxguiqt.h |
136 | $(MOC) -o$@ $^ | |
137 | ||
138 | clean: | |
940a2012 | 139 | $(RM) $(CLEAN) |
3a4c72fe | 140 | cd ../liblua && make clean |
6658905f | 141 | |
bd846386 | 142 | tarbin: $(BINS) |
143 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
144 | ||
022c8791 | 145 | # must be run as root |
146 | install_kext: Info.plist | |
147 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
148 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
149 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
150 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
151 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
152 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
153 | touch /System/Library/Extensions | |
154 | @echo "*** You may need to reboot for the kext to take effect." | |
155 | ||
806dc075 | 156 | lua_build: |
30a46ed8 | 157 | @echo Compiling liblua, using platform $(LUAPLATFORM) |
158 | cd ../liblua && make $(LUAPLATFORM) | |
806dc075 | 159 | |
6658905f | 160 | .PHONY: all clean |