]> git.zerfleddert.de Git - proxmark3-svn/blob - client/Makefile
FIX: Marshmellow hinted that I should use another fskclock method, which obeys the...
[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 crc.c \
74 crc16.c \
75 crc64.c \
76 iso14443crc.c \
77 iso15693tools.c \
78 data.c \
79 graph.c \
80 ui.c \
81 cmddata.c \
82 lfdemod.c \
83 cmdhf.c \
84 cmdhf14a.c \
85 cmdhf14b.c \
86 cmdhf15.c \
87 cmdhfepa.c \
88 cmdhflegic.c \
89 cmdhficlass.c \
90 cmdhfmf.c \
91 cmdhfmfu.c \
92 cmdhw.c \
93 cmdlf.c \
94 cmdlfio.c \
95 cmdlfhid.c \
96 cmdlfem4x.c \
97 cmdlfhitag.c \
98 cmdlfti.c \
99 cmdparser.c \
100 cmdmain.c \
101 cmdlft55xx.c \
102 cmdlfpcf7931.c\
103 pm3_binlib.c\
104 scripting.c\
105 cmdscript.c\
106 pm3_bitlib.c\
107 aes.c\
108 protocols.c\
109
110
111 COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
112 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
113
114 RM = rm -f
115 BINS = proxmark3 flasher #snooper cli
116 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
117
118 all: lua_build $(BINS)
119
120 all-static: LDLIBS:=-static $(LDLIBS)
121 all-static: snooper cli flasher
122
123 proxmark3: LDLIBS+=$(QTLDLIBS)
124 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
125 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
126
127 snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
128 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
129
130 cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
131 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
132
133 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
134 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
135
136 $(OBJDIR)/%.o: %.c
137 $(CC) $(CFLAGS) -c -o $@ $<
138
139 $(OBJDIR)/%.o: %.cpp
140 $(CXX) $(CXXFLAGS) -c -o $@ $<
141
142 proxguiqt.moc.cpp: proxguiqt.h
143 $(MOC) -o$@ $^
144
145 clean:
146 $(RM) $(CLEAN)
147 cd ../liblua && make clean
148
149 tarbin: $(BINS)
150 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
151
152 # must be run as root
153 install_kext: Info.plist
154 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
155 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
156 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
157 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
158 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
159 rm -rf /System/Library/Caches/com.apple.kext.caches
160 touch /System/Library/Extensions
161 @echo "*** You may need to reboot for the kext to take effect."
162
163 lua_build:
164 @echo Compiling liblua, using platform $(LUAPLATFORM)
165 cd ../liblua && make $(LUAPLATFORM)
166
167 .PHONY: all clean
Impressum, Datenschutz