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