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