]>
Commit | Line | Data |
---|---|---|
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 | #----------------------------------------------------------------------------- | |
6 | include ../common/Makefile.common | |
7 | ||
8 | ||
9 | CC=gcc | |
10 | CXX=g++ | |
11 | #COMMON_FLAGS = -m32 | |
12 | ||
13 | VPATH = ../common | |
14 | OBJDIR = obj | |
15 | ||
16 | LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread ../liblua/liblua.a | |
17 | LDFLAGS = $(COMMON_FLAGS) | |
18 | CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O4 | |
19 | LUAPLATFORM = generic | |
20 | ||
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 | |
24 | MOC = $(QTDIR)/bin/moc | |
25 | LUAPLATFORM = mingw | |
26 | else ifeq ($(platform),Darwin) | |
27 | CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers | |
28 | QTLDLIBS = -framework QtGui -framework QtCore | |
29 | MOC = moc | |
30 | LUAPLATFORM = macosx | |
31 | else | |
32 | CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 | |
33 | QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) | |
34 | MOC = $(shell pkg-config --variable=moc_location QtCore) | |
35 | LUAPLATFORM = linux | |
36 | endif | |
37 | ||
38 | ||
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 | |
44 | QTGUI = guidummy.o | |
45 | endif | |
46 | ||
47 | CORESRCS = uart.c \ | |
48 | util.c \ | |
49 | sleep.c \ | |
50 | ||
51 | CMDSRCS = nonce2key/crapto1.c\ | |
52 | nonce2key/crypto1.c\ | |
53 | nonce2key/nonce2key.c\ | |
54 | mifarehost.c\ | |
55 | crc16.c \ | |
56 | iso14443crc.c \ | |
57 | iso15693tools.c \ | |
58 | data.c \ | |
59 | graph.c \ | |
60 | ui.c \ | |
61 | cmddata.c \ | |
62 | cmdhf.c \ | |
63 | cmdhf14a.c \ | |
64 | cmdhf14b.c \ | |
65 | cmdhf15.c \ | |
66 | cmdhfepa.c \ | |
67 | cmdhflegic.c \ | |
68 | cmdhficlass.c \ | |
69 | cmdhfmf.c \ | |
70 | cmdhw.c \ | |
71 | cmdlf.c \ | |
72 | cmdlfhid.c \ | |
73 | cmdlfem4x.c \ | |
74 | cmdlfhitag.c \ | |
75 | cmdlfti.c \ | |
76 | cmdparser.c \ | |
77 | cmdmain.c \ | |
78 | cmdlft55xx.c \ | |
79 | cmdlfpcf7931.c\ | |
80 | pm3_binlib.c\ | |
81 | scripting.c\ | |
82 | cmdscript.c\ | |
83 | ||
84 | ||
85 | ||
86 | COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o) | |
87 | CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o) | |
88 | ||
89 | RM = rm -f | |
90 | BINS = proxmark3 flasher #snooper cli | |
91 | CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp | |
92 | ||
93 | all: lua_build $(BINS) | |
94 | ||
95 | all-static: LDLIBS:=-static $(LDLIBS) | |
96 | all-static: snooper cli flasher | |
97 | ||
98 | proxmark3: LDLIBS+=$(QTLDLIBS) | |
99 | proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI) | |
100 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
101 | ||
102 | snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o | |
103 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
104 | ||
105 | cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o | |
106 | $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@ | |
107 | ||
108 | flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS) | |
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 $@ $< | |
116 | ||
117 | proxguiqt.moc.cpp: proxguiqt.h | |
118 | $(MOC) -o$@ $^ | |
119 | ||
120 | clean: | |
121 | $(RM) $(CLEAN) | |
122 | cd ../liblua && make clean | |
123 | ||
124 | tarbin: $(BINS) | |
125 | $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%) | |
126 | ||
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 | ||
138 | lua_build: | |
139 | @echo Compiling liblua, using platform $(LUAPLATFORM) | |
140 | cd ../liblua && make $(LUAPLATFORM) | |
141 | ||
142 | .PHONY: all clean |