]> git.zerfleddert.de Git - proxmark3-svn/blame - client/Makefile
More annotations to iso14443b protocol listings
[proxmark3-svn] / client / Makefile
CommitLineData
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 6include ../common/Makefile.common
7
806dc075 8
91c38cf7 9CC=gcc
46cd4046 10CXX=g++
709b784c 11#COMMON_FLAGS = -m32
022c8791 12
7fe9b0b7 13VPATH = ../common
46cd4046 14OBJDIR = obj
7fe9b0b7 15
1f6417a9 16LDLIBS = -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lreadline -lpthread -lm
709b784c 17LDFLAGS = $(COMMON_FLAGS)
1f6417a9 18CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4
30a46ed8 19LUAPLATFORM = generic
6658905f 20
8691f5b7 21ifneq (,$(findstring MINGW,$(platform)))
22CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
23QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
829fb342 24MOC = $(QTDIR)/bin/moc
30a46ed8 25LUAPLATFORM = mingw
8691f5b7 26else ifeq ($(platform),Darwin)
a66fca86
AD
27CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
28QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
29MOC = $(shell pkg-config --variable=moc_location QtCore)
3a4c72fe 30LUAPLATFORM = macosx
8691f5b7 31else
28fdb04f 32CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
8691f5b7 33QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
34MOC = $(shell pkg-config --variable=moc_location QtCore)
eaea9de9 35LDLIBS += -ldl
36
a763eb21 37# 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.
38#MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
30a46ed8 39LUAPLATFORM = linux
62b1302c 40endif
41
8691f5b7 42
245e844e 43ifneq ($(QTLDLIBS),)
44QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
45CFLAGS += -DHAVE_GUI
46LINK.o = $(LINK.cpp)
47else
62b1302c 48QTGUI = guidummy.o
245e844e 49endif
62b1302c 50
759c16b3 51CORESRCS = uart.c \
52 util.c \
53 sleep.c
54
55
56CMDSRCS = nonce2key/crapto1.c\
57 nonce2key/crypto1.c\
58 nonce2key/nonce2key.c\
a66fca86
AD
59 loclass/cipher.c \
60 loclass/cipherutils.c \
61 loclass/des.c \
62 loclass/ikeys.c \
3ad48540
MHS
63 loclass/elite_crack.c\
64 loclass/fileutils.c\
f397b5cc 65 mifarehost.c\
91c38cf7 66 crc16.c \
67 iso14443crc.c \
9455b51c 68 iso15693tools.c \
7fe9b0b7 69 data.c \
70 graph.c \
71 ui.c \
72 cmddata.c \
eb191de6 73 lfdemod.c \
7fe9b0b7 74 cmdhf.c \
75 cmdhf14a.c \
76 cmdhf14b.c \
77 cmdhf15.c \
5acd09bd 78 cmdhfepa.c \
7fe9b0b7 79 cmdhflegic.c \
cee5a30d 80 cmdhficlass.c \
9ca155ba 81 cmdhfmf.c \
7fe9b0b7 82 cmdhw.c \
83 cmdlf.c \
a1f3bb12 84 cmdlfio.c \
a66fca86 85 cmdlfhid.c \
28fdb04f 86 cmdlfem4x.c \
db09cb3a 87 cmdlfhitag.c \
7fe9b0b7 88 cmdlfti.c \
89 cmdparser.c \
902cb3c0 90 cmdmain.c \
54a942b0 91 cmdlft55xx.c \
806dc075 92 cmdlfpcf7931.c\
f057bddb 93 pm3_binlib.c\
a0655c45 94 scripting.c\
806dc075 95 cmdscript.c\
77cd612f 96 pm3_bitlib.c\
1f6417a9 97 aes.c\
28fdb04f 98
a0655c45 99
759c16b3 100COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
46cd4046 101CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
7fe9b0b7 102
940a2012 103RM = rm -f
902cb3c0 104BINS = proxmark3 flasher #snooper cli
46cd4046 105CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
940a2012 106
806dc075 107all: lua_build $(BINS)
6658905f 108
709b784c 109all-static: LDLIBS:=-static $(LDLIBS)
110all-static: snooper cli flasher
940a2012 111
709b784c 112proxmark3: LDLIBS+=$(QTLDLIBS)
759c16b3 113proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
46cd4046 114 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
3f030abe 115
759c16b3 116snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
46cd4046 117 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
6658905f 118
759c16b3 119cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
46cd4046 120 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
db917a16 121
759c16b3 122flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
46cd4046 123 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
124
125$(OBJDIR)/%.o: %.c
126 $(CC) $(CFLAGS) -c -o $@ $<
127
128$(OBJDIR)/%.o: %.cpp
129 $(CXX) $(CXXFLAGS) -c -o $@ $<
06735128 130
6658905f 131proxguiqt.moc.cpp: proxguiqt.h
132 $(MOC) -o$@ $^
133
134clean:
940a2012 135 $(RM) $(CLEAN)
3a4c72fe 136 cd ../liblua && make clean
6658905f 137
bd846386 138tarbin: $(BINS)
139 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
140
022c8791 141# must be run as root
142install_kext: Info.plist
143 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
144 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
145 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
146 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
147 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
148 rm -rf /System/Library/Caches/com.apple.kext.caches
149 touch /System/Library/Extensions
150 @echo "*** You may need to reboot for the kext to take effect."
151
806dc075 152lua_build:
30a46ed8 153 @echo Compiling liblua, using platform $(LUAPLATFORM)
154 cd ../liblua && make $(LUAPLATFORM)
806dc075 155
6658905f 156.PHONY: all clean
Impressum, Datenschutz