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