]> git.zerfleddert.de Git - proxmark3-svn/blob - client/Makefile
hf mf dump bugfix: wrongly tried key A instead of key B for a specific Access Condition
[proxmark3-svn] / client / Makefile
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 $(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 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
30 QTLDLIBS = -F/opt/local/Library/Frameworks -framework QtGui -framework QtCore
31 MOC = moc
32 LUAPLATFORM = macosx
33 else
34 CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
35 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
36 MOC = $(shell pkg-config --variable=moc_location QtCore)
37 LDLIBS += -ldl
38
39 # 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.
40 #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
41 LUAPLATFORM = linux
42 endif
43
44
45 ifneq ($(QTLDLIBS),)
46 QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
47 CFLAGS += -DHAVE_GUI
48 LINK.o = $(LINK.cpp)
49 else
50 QTGUI = guidummy.o
51 endif
52
53 CORESRCS = uart.c \
54 util.c \
55 sleep.c
56
57
58 CMDSRCS = nonce2key/crapto1.c\
59 nonce2key/crypto1.c\
60 nonce2key/nonce2key.c\
61 mifarehost.c\
62 crc16.c \
63 iso14443crc.c \
64 iso15693tools.c \
65 data.c \
66 graph.c \
67 ui.c \
68 cmddata.c \
69 cmdhf.c \
70 cmdhf14a.c \
71 cmdhf14b.c \
72 cmdhf15.c \
73 cmdhfepa.c \
74 cmdhflegic.c \
75 cmdhficlass.c \
76 cmdhfmf.c \
77 cmdhw.c \
78 cmdlf.c \
79 cmdlfhid.c \
80 cmdlfio.c \
81 cmdlfem4x.c \
82 cmdlfhitag.c \
83 cmdlfti.c \
84 cmdparser.c \
85 cmdmain.c \
86 cmdlft55xx.c \
87 cmdlfpcf7931.c\
88 pm3_binlib.c\
89 scripting.c\
90 cmdscript.c\
91 pm3_bitlib.c\
92
93
94 COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
95 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
96
97 RM = rm -f
98 BINS = proxmark3 flasher #snooper cli
99 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
100
101 all: lua_build $(BINS)
102
103 all-static: LDLIBS:=-static $(LDLIBS)
104 all-static: snooper cli flasher
105
106 proxmark3: LDLIBS+=$(QTLDLIBS)
107 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
108 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
109
110 snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
111 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
112
113 cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
114 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
115
116 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
117 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
118
119 $(OBJDIR)/%.o: %.c
120 $(CC) $(CFLAGS) -c -o $@ $<
121
122 $(OBJDIR)/%.o: %.cpp
123 $(CXX) $(CXXFLAGS) -c -o $@ $<
124
125 proxguiqt.moc.cpp: proxguiqt.h
126 $(MOC) -o$@ $^
127
128 clean:
129 $(RM) $(CLEAN)
130 cd ../liblua && make clean
131
132 tarbin: $(BINS)
133 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
134
135 # must be run as root
136 install_kext: Info.plist
137 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
138 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
139 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
140 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
141 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
142 rm -rf /System/Library/Caches/com.apple.kext.caches
143 touch /System/Library/Extensions
144 @echo "*** You may need to reboot for the kext to take effect."
145
146 lua_build:
147 @echo Compiling liblua, using platform $(LUAPLATFORM)
148 cd ../liblua && make $(LUAPLATFORM)
149
150 .PHONY: all clean
Impressum, Datenschutz