]>
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 | |
806dc075 | 16 | LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread ../liblua/liblua.a |
709b784c | 17 | LDFLAGS = $(COMMON_FLAGS) |
806dc075 | 18 | CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O4 |
30a46ed8 | 19 | LUAPLATFORM = generic |
6658905f | 20 | |
8691f5b7 | 21 | ifneq (,$(findstring MINGW,$(platform))) |
22 | CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui | |
23 | QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 | |
829fb342 | 24 | MOC = $(QTDIR)/bin/moc |
30a46ed8 | 25 | LUAPLATFORM = mingw |
8691f5b7 | 26 | else ifeq ($(platform),Darwin) |
e3e96e56 | 27 | CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers |
8691f5b7 | 28 | QTLDLIBS = -framework QtGui -framework QtCore |
29 | MOC = moc | |
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) | |
30a46ed8 | 35 | LUAPLATFORM = linux |
62b1302c | 36 | endif |
37 | ||
8691f5b7 | 38 | |
245e844e | 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 | |
62b1302c | 44 | QTGUI = guidummy.o |
245e844e | 45 | endif |
62b1302c | 46 | |
759c16b3 | 47 | CORESRCS = uart.c \ |
48 | util.c \ | |
a0655c45 | 49 | sleep.c \ |
759c16b3 | 50 | |
51 | CMDSRCS = nonce2key/crapto1.c\ | |
52 | nonce2key/crypto1.c\ | |
53 | nonce2key/nonce2key.c\ | |
f397b5cc | 54 | mifarehost.c\ |
91c38cf7 | 55 | crc16.c \ |
56 | iso14443crc.c \ | |
9455b51c | 57 | iso15693tools.c \ |
7fe9b0b7 | 58 | data.c \ |
59 | graph.c \ | |
60 | ui.c \ | |
61 | cmddata.c \ | |
62 | cmdhf.c \ | |
63 | cmdhf14a.c \ | |
64 | cmdhf14b.c \ | |
65 | cmdhf15.c \ | |
5acd09bd | 66 | cmdhfepa.c \ |
7fe9b0b7 | 67 | cmdhflegic.c \ |
cee5a30d | 68 | cmdhficlass.c \ |
9ca155ba | 69 | cmdhfmf.c \ |
7fe9b0b7 | 70 | cmdhw.c \ |
71 | cmdlf.c \ | |
7fe9b0b7 | 72 | cmdlfhid.c \ |
28fdb04f | 73 | cmdlfem4x.c \ |
db09cb3a | 74 | cmdlfhitag.c \ |
7fe9b0b7 | 75 | cmdlfti.c \ |
76 | cmdparser.c \ | |
902cb3c0 | 77 | cmdmain.c \ |
54a942b0 | 78 | cmdlft55xx.c \ |
806dc075 | 79 | cmdlfpcf7931.c\ |
f057bddb | 80 | pm3_binlib.c\ |
a0655c45 | 81 | scripting.c\ |
806dc075 | 82 | cmdscript.c\ |
83 | ||
28fdb04f | 84 | |
a0655c45 | 85 | |
759c16b3 | 86 | COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o) |
46cd4046 | 87 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) |
7fe9b0b7 | 88 | |
940a2012 | 89 | RM = rm -f |
902cb3c0 | 90 | BINS = proxmark3 flasher #snooper cli |
46cd4046 | 91 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp |
940a2012 | 92 | |
806dc075 | 93 | all: lua_build $(BINS) |
6658905f | 94 | |
709b784c | 95 | all-static: LDLIBS:=-static $(LDLIBS) |
96 | all-static: snooper cli flasher | |
940a2012 | 97 | |
709b784c | 98 | proxmark3: LDLIBS+=$(QTLDLIBS) |
759c16b3 | 99 | proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI) |
46cd4046 | 100 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
3f030abe | 101 | |
759c16b3 | 102 | snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 103 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
6658905f | 104 | |
759c16b3 | 105 | cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o |
46cd4046 | 106 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
db917a16 | 107 | |
759c16b3 | 108 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS) |
46cd4046 | 109 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ |
110 | ||
111 | $(OBJDIR)/%.o: %.c | |
112 | $(CC) $(CFLAGS) -c -o $@ $< | |
113 | ||
114 | $(OBJDIR)/%.o: %.cpp | |
115 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
06735128 | 116 | |
6658905f | 117 | proxguiqt.moc.cpp: proxguiqt.h |
118 | $(MOC) -o$@ $^ | |
119 | ||
120 | clean: | |
940a2012 | 121 | $(RM) $(CLEAN) |
3a4c72fe | 122 | cd ../liblua && make clean |
6658905f | 123 | |
bd846386 | 124 | tarbin: $(BINS) |
125 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
126 | ||
022c8791 | 127 | # must be run as root |
128 | install_kext: Info.plist | |
129 | mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents | |
130 | cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents | |
131 | chown -R root:wheel /System/Library/Extensions/Proxmark3.kext | |
132 | chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents | |
133 | chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist | |
134 | rm -rf /System/Library/Caches/com.apple.kext.caches | |
135 | touch /System/Library/Extensions | |
136 | @echo "*** You may need to reboot for the kext to take effect." | |
137 | ||
806dc075 | 138 | lua_build: |
30a46ed8 | 139 | @echo Compiling liblua, using platform $(LUAPLATFORM) |
140 | cd ../liblua && make $(LUAPLATFORM) | |
806dc075 | 141 | |
6658905f | 142 | .PHONY: all clean |