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