]> git.zerfleddert.de Git - proxmark3-svn/blob - client/Makefile
Removed the -ldl switch from r763, so it only is added for Linux (it apparently cause...
[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 -ldl
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 LUAPLATFORM = macosx
31 else
32 CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
33 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
34 MOC = $(shell pkg-config --variable=moc_location QtCore)
35 LDLIBS += -ldl
36
37 # 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.
38 #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
39 LUAPLATFORM = linux
40 endif
41
42
43 ifneq ($(QTLDLIBS),)
44 QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
45 CFLAGS += -DHAVE_GUI
46 LINK.o = $(LINK.cpp)
47 else
48 QTGUI = guidummy.o
49 endif
50
51 CORESRCS = uart.c \
52 util.c \
53 sleep.c
54
55
56 CMDSRCS = nonce2key/crapto1.c\
57 nonce2key/crypto1.c\
58 nonce2key/nonce2key.c\
59 mifarehost.c\
60 crc16.c \
61 iso14443crc.c \
62 iso15693tools.c \
63 data.c \
64 graph.c \
65 ui.c \
66 cmddata.c \
67 cmdhf.c \
68 cmdhf14a.c \
69 cmdhf14b.c \
70 cmdhf15.c \
71 cmdhfepa.c \
72 cmdhflegic.c \
73 cmdhficlass.c \
74 cmdhfmf.c \
75 cmdhw.c \
76 cmdlf.c \
77 cmdlfhid.c \
78 cmdlfem4x.c \
79 cmdlfhitag.c \
80 cmdlfti.c \
81 cmdparser.c \
82 cmdmain.c \
83 cmdlft55xx.c \
84 cmdlfpcf7931.c\
85 pm3_binlib.c\
86 scripting.c\
87 cmdscript.c\
88
89
90
91 COREOBJS = $(CORESRCS:%.c=$(OBJDIR)/%.o)
92 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
93
94 RM = rm -f
95 BINS = proxmark3 flasher #snooper cli
96 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
97
98 all: lua_build $(BINS)
99
100 all-static: LDLIBS:=-static $(LDLIBS)
101 all-static: snooper cli flasher
102
103 proxmark3: LDLIBS+=$(QTLDLIBS)
104 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
105 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
106
107 snooper: $(OBJDIR)/snooper.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
108 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
109
110 cli: $(OBJDIR)/cli.o $(COREOBJS) $(CMDOBJS) $(OBJDIR)/guidummy.o
111 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
112
113 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(COREOBJS)
114 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
115
116 $(OBJDIR)/%.o: %.c
117 $(CC) $(CFLAGS) -c -o $@ $<
118
119 $(OBJDIR)/%.o: %.cpp
120 $(CXX) $(CXXFLAGS) -c -o $@ $<
121
122 proxguiqt.moc.cpp: proxguiqt.h
123 $(MOC) -o$@ $^
124
125 clean:
126 $(RM) $(CLEAN)
127 cd ../liblua && make clean
128
129 tarbin: $(BINS)
130 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
131
132 # must be run as root
133 install_kext: Info.plist
134 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
135 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
136 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
137 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
138 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
139 rm -rf /System/Library/Caches/com.apple.kext.caches
140 touch /System/Library/Extensions
141 @echo "*** You may need to reboot for the kext to take effect."
142
143 lua_build:
144 @echo Compiling liblua, using platform $(LUAPLATFORM)
145 cd ../liblua && make $(LUAPLATFORM)
146
147 .PHONY: all clean
Impressum, Datenschutz