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