]> git.zerfleddert.de Git - proxmark3-svn/blob - client/Makefile
Improved error handling
[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
13 VPATH = ../common
14 OBJDIR = obj
15
16 LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread ../liblua/liblua.a
17 LDFLAGS = $(COMMON_FLAGS)
18 CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O4
19 LUAPLATFORM = generic
20
21 ifneq (,$(findstring MINGW,$(platform)))
22 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
23 QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
24 MOC = $(QTDIR)/bin/moc
25 LUAPLATFORM = mingw
26 else ifeq ($(platform),Darwin)
27 CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers
28 QTLDLIBS = -framework QtGui -framework QtCore
29 MOC = moc
30 else
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 = linux
35 endif
36
37
38 ifneq ($(QTLDLIBS),)
39 QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
40 CFLAGS += -DHAVE_GUI
41 LINK.o = $(LINK.cpp)
42 else
43 QTGUI = guidummy.o
44 endif
45
46 CORESRCS = uart.c \
47 util.c \
48 sleep.c \
49
50 CMDSRCS = nonce2key/crapto1.c\
51 nonce2key/crypto1.c\
52 nonce2key/nonce2key.c\
53 mifarehost.c\
54 crc16.c \
55 iso14443crc.c \
56 iso15693tools.c \
57 data.c \
58 graph.c \
59 ui.c \
60 cmddata.c \
61 cmdhf.c \
62 cmdhf14a.c \
63 cmdhf14b.c \
64 cmdhf15.c \
65 cmdhfepa.c \
66 cmdhflegic.c \
67 cmdhficlass.c \
68 cmdhfmf.c \
69 cmdhw.c \
70 cmdlf.c \
71 cmdlfhid.c \
72 cmdlfem4x.c \
73 cmdlfhitag.c \
74 cmdlfti.c \
75 cmdparser.c \
76 cmdmain.c \
77 cmdlft55xx.c \
78 cmdlfpcf7931.c\
79 pm3_binlib.c\
80 scripting.c\
81 cmdscript.c\
82
83
84
85 COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
86 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
87
88 RM = rm -f
89 BINS = proxmark3 flasher #snooper cli
90 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
91
92 all: lua_build $(BINS)
93
94 all-static: LDLIBS:=-static $(LDLIBS)
95 all-static: snooper cli flasher
96
97 proxmark3: LDLIBS+=$(QTLDLIBS)
98 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
99 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
100
101 snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
102 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
103
104 cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
105 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
106
107 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
108 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
109
110 $(OBJDIR)/%.o: %.c
111 $(CC) $(CFLAGS) -c -o $@ $<
112
113 $(OBJDIR)/%.o: %.cpp
114 $(CXX) $(CXXFLAGS) -c -o $@ $<
115
116 proxguiqt.moc.cpp: proxguiqt.h
117 $(MOC) -o$@ $^
118
119 clean:
120 $(RM) $(CLEAN)
121
122 tarbin: $(BINS)
123 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
124
125 # must be run as root
126 install_kext: Info.plist
127 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
128 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
129 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
130 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
131 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
132 rm -rf /System/Library/Caches/com.apple.kext.caches
133 touch /System/Library/Extensions
134 @echo "*** You may need to reboot for the kext to take effect."
135
136 lua_build:
137 @echo Compiling liblua, using platform $(LUAPLATFORM)
138 cd ../liblua && make $(LUAPLATFORM)
139
140 .PHONY: all clean
Impressum, Datenschutz