]> git.zerfleddert.de Git - proxmark3-svn/blob - client/Makefile
temporarely disabled QT for winows, no clue why it gives a failure
[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 -lusb -lreadline -lpthread
16 LDFLAGS = $(COMMON_FLAGS)
17 CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
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)/moc
23 ####################################################
24 # Disabled gui for Windows, can someone with more
25 # knowledge about QT fix this problem??
26 ####################################################
27 QTLDLIBS=
28 else ifeq ($(platform),Darwin)
29 CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers
30 QTLDLIBS = -framework QtGui -framework QtCore
31 MOC = moc
32 else
33 CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3
34 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
35 MOC = $(shell pkg-config --variable=moc_location QtCore)
36 endif
37
38
39 ifneq ($(QTLDLIBS),)
40 QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
41 CFLAGS += -DHAVE_GUI
42 LINK.o = $(LINK.cpp)
43 else
44 QTGUI = guidummy.o
45 endif
46
47 CMDSRCS = \
48 nonce2key/crapto1.c\
49 nonce2key/crypto1.c\
50 nonce2key/nonce2key.c\
51 mifarehost.c\
52 crc16.c \
53 iso14443crc.c \
54 iso15693tools.c \
55 data.c \
56 graph.c \
57 ui.c \
58 util.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 cmdlfem4x.c \
71 cmdlfhid.c \
72 cmdlfhitag.c \
73 cmdlfti.c \
74 cmdparser.c \
75 cmdmain.c \
76 uart.c
77
78 CMDOBJS = $(CMDSRCS:%.c=$(OBJDIR)/%.o)
79
80 RM = rm -f
81 BINS = proxmark3 flasher #snooper cli
82 CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $(CMDOBJS) $(OBJDIR)/*.o *.o *.moc.cpp
83
84 all: $(BINS)
85
86 all-static: LDLIBS:=-static $(LDLIBS)
87 all-static: snooper cli flasher
88
89 proxmark3: LDLIBS+=$(QTLDLIBS)
90 proxmark3: $(OBJDIR)/proxmark3.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(QTGUI)
91 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
92
93 snooper: $(OBJDIR)/snooper.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(OBJDIR)/guidummy.o
94 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
95
96 cli: $(OBJDIR)/cli.o $(CMDOBJS) $(OBJDIR)/proxusb.o $(OBJDIR)/guidummy.o
97 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
98
99 flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/proxusb.o
100 $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
101
102 $(OBJDIR)/%.o: %.c
103 $(CC) $(CFLAGS) -c -o $@ $<
104
105 $(OBJDIR)/%.o: %.cpp
106 $(CXX) $(CXXFLAGS) -c -o $@ $<
107
108 proxguiqt.moc.cpp: proxguiqt.h
109 $(MOC) -o$@ $^
110
111 clean:
112 $(RM) $(CLEAN)
113
114 tarbin: $(BINS)
115 $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(BINS:%=client/%)
116
117 # must be run as root
118 install_kext: Info.plist
119 mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
120 cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
121 chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
122 chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
123 chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
124 rm -rf /System/Library/Caches/com.apple.kext.caches
125 touch /System/Library/Extensions
126 @echo "*** You may need to reboot for the kext to take effect."
127
128 .PHONY: all clean
Impressum, Datenschutz