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