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