2010-02-21 08:47:22 +08:00
#-----------------------------------------------------------------------------
# This code is licensed to you under the terms of the GNU GPL, version 2 or,
# at your option, any later version. See the LICENSE.txt file for the text of
# the license.
#-----------------------------------------------------------------------------
2010-05-09 20:17:42 +08:00
i n c l u d e . . / c o m m o n / M a k e f i l e . c o m m o n
2013-05-22 02:37:43 +08:00
2010-02-20 08:36:48 +08:00
CC = gcc
2010-02-21 08:16:42 +08:00
CXX = g++
2009-09-11 10:25:48 +08:00
#COMMON_FLAGS = -m32
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
VPATH = ../common
2010-02-21 08:16:42 +08:00
OBJDIR = obj
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
2015-01-27 03:56:33 +08:00
LDLIBS = -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lreadline -lpthread -lm
2009-09-11 10:25:48 +08:00
LDFLAGS = $( COMMON_FLAGS)
2015-01-23 04:02:21 +08:00
CFLAGS = -std= c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $( COMMON_FLAGS) -g -O4
2013-06-26 04:25:18 +08:00
LUAPLATFORM = generic
2015-03-11 02:00:39 +08:00
2010-02-25 03:33:29 +08:00
i f n e q ( , $( findstring MINGW ,$ ( platform ) ) )
2015-03-11 02:00:39 +08:00
CXXFLAGS = -I$( QTDIR) /include -I$( QTDIR) /include/QtCore -I$( QTDIR) /include/QtGui
MOC = $( QTDIR) /bin/moc
LUAPLATFORM = mingw
ifneq ( $( wildcard $( QTDIR) /include/QtWidgets) ,)
CXXFLAGS += -I$( QTDIR) /include/QtWidgets
QTLDLIBS = -L$( QTDIR) /lib -lQt5Core -lQt5Gui -lQt5Widgets
else
QTLDLIBS = -L$( QTDIR) /lib -lQtCore4 -lQtGui4
endif
2010-02-25 03:33:29 +08:00
e l s e i f e q ( $( platform ) , D a r w i n )
2015-03-11 02:00:39 +08:00
CXXFLAGS = $( shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
QTLDLIBS = $( shell pkg-config --libs QtCore QtGui 2>/dev/null)
MOC = $( shell pkg-config --variable= moc_location QtCore)
LUAPLATFORM = macosx
2010-02-25 03:33:29 +08:00
e l s e
2015-03-11 02:00:39 +08:00
CXXFLAGS = $( shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
QTLDLIBS = $( shell pkg-config --libs QtCore QtGui 2>/dev/null)
MOC = $( shell pkg-config --variable= moc_location QtCore)
LDLIBS += -ldl
# 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.
#MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
LUAPLATFORM = linux
2010-02-21 09:07:11 +08:00
e n d i f
2010-02-25 03:33:29 +08:00
2011-09-05 19:48:08 +08:00
i f n e q ( $( QTLDLIBS ) , )
2015-03-11 02:00:39 +08:00
QTGUI = $( OBJDIR) /proxgui.o $( OBJDIR) /proxguiqt.o $( OBJDIR) /proxguiqt.moc.o
CFLAGS += -DHAVE_GUI
LINK.o = $( LINK.cpp)
2011-09-05 19:48:08 +08:00
e l s e
2015-03-11 02:00:39 +08:00
QTGUI = guidummy.o
2011-09-05 19:48:08 +08:00
e n d i f
2010-02-21 09:07:11 +08:00
2013-03-14 23:03:04 +08:00
CORESRCS = uart.c \
util.c \
sleep.c
CMDSRCS = nonce2key/crapto1.c\
nonce2key/crypto1.c\
nonce2key/nonce2key.c\
2014-05-02 18:11:54 +08:00
loclass/cipher.c \
loclass/cipherutils.c \
loclass/des.c \
loclass/ikeys.c \
2014-06-29 02:52:37 +08:00
loclass/elite_crack.c\
loclass/fileutils.c\
2011-06-07 20:35:52 +08:00
mifarehost.c\
2015-03-14 00:23:26 +08:00
crc.c \
2010-02-20 08:36:48 +08:00
crc16.c \
2015-05-14 09:14:35 +08:00
crc64.c \
2010-02-20 08:36:48 +08:00
iso14443crc.c \
2010-10-19 22:25:17 +08:00
iso15693tools.c \
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
data.c \
graph.c \
ui.c \
cmddata.c \
2014-12-29 09:33:32 +08:00
lfdemod.c \
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
cmdhf.c \
cmdhf14a.c \
cmdhf14b.c \
cmdhf15.c \
2012-08-29 05:39:50 +08:00
cmdhfepa.c \
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
cmdhflegic.c \
2011-05-18 20:33:32 +08:00
cmdhficlass.c \
2011-06-10 21:35:10 +08:00
cmdhfmf.c \
2015-01-21 04:23:04 +08:00
cmdhfmfu.c \
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
cmdhw.c \
cmdlf.c \
2014-03-19 04:52:48 +08:00
cmdlfio.c \
2014-05-02 18:11:54 +08:00
cmdlfhid.c \
2013-02-28 23:11:52 +08:00
cmdlfem4x.c \
2012-09-18 21:52:50 +08:00
cmdlfhitag.c \
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
cmdlfti.c \
cmdparser.c \
2012-12-05 07:39:18 +08:00
cmdmain.c \
2013-03-01 01:04:23 +08:00
cmdlft55xx.c \
2013-05-22 02:37:43 +08:00
cmdlfpcf7931.c\
2013-05-27 04:05:13 +08:00
pm3_binlib.c\
2013-05-25 05:05:45 +08:00
scripting.c\
2013-05-22 02:37:43 +08:00
cmdscript.c\
2013-11-07 02:34:10 +08:00
pm3_bitlib.c\
2015-01-13 04:47:36 +08:00
aes.c\
2015-02-19 17:48:33 +08:00
protocols.c\
2013-02-28 23:11:52 +08:00
2013-05-25 05:05:45 +08:00
2013-03-14 23:03:04 +08:00
COREOBJS = $( CORESRCS:%.c= $( OBJDIR) /%.o)
2010-02-21 08:16:42 +08:00
CMDOBJS = $( CMDSRCS:%.c= $( OBJDIR) /%.o)
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
2009-12-22 20:52:02 +08:00
RM = rm -f
2012-12-05 07:39:18 +08:00
BINS = proxmark3 flasher #snooper cli
2010-02-21 08:16:42 +08:00
CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $( CMDOBJS) $( OBJDIR) /*.o *.o *.moc.cpp
2009-12-22 20:52:02 +08:00
2013-05-22 02:37:43 +08:00
all : lua_build $( BINS )
2009-04-09 14:43:20 +08:00
2009-09-11 10:25:48 +08:00
all-static : LDLIBS :=-static $( LDLIBS )
all-static : snooper cli flasher
2009-12-22 20:52:02 +08:00
2009-09-11 10:25:48 +08:00
proxmark3 : LDLIBS +=$( QTLDLIBS )
2013-03-14 23:03:04 +08:00
proxmark3 : $( OBJDIR ) /proxmark 3.o $( COREOBJS ) $( CMDOBJS ) $( QTGUI )
2010-02-21 08:16:42 +08:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-07-02 23:12:49 +08:00
2013-03-14 23:03:04 +08:00
snooper : $( OBJDIR ) /snooper .o $( COREOBJS ) $( CMDOBJS ) $( OBJDIR ) /guidummy .o
2010-02-21 08:16:42 +08:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-04-09 14:43:20 +08:00
2013-03-14 23:03:04 +08:00
cli : $( OBJDIR ) /cli .o $( COREOBJS ) $( CMDOBJS ) $( OBJDIR ) /guidummy .o
2010-02-21 08:16:42 +08:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-06-26 18:20:55 +08:00
2013-03-14 23:03:04 +08:00
flasher : $( OBJDIR ) /flash .o $( OBJDIR ) /flasher .o $( COREOBJS )
2010-02-21 08:16:42 +08:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
$(OBJDIR)/%.o : %.c
$( CC) $( CFLAGS) -c -o $@ $<
$(OBJDIR)/%.o : %.cpp
$( CXX) $( CXXFLAGS) -c -o $@ $<
2009-06-29 06:13:04 +08:00
2009-04-09 14:43:20 +08:00
proxguiqt.moc.cpp : proxguiqt .h
$( MOC) -o$@ $^
clean :
2009-12-22 20:52:02 +08:00
$( RM) $( CLEAN)
2013-06-26 19:02:37 +08:00
cd ../liblua && make clean
2009-04-09 14:43:20 +08:00
2010-05-09 20:17:42 +08:00
tarbin : $( BINS )
$( TAR) $( TARFLAGS) ../proxmark3-$( platform) -bin.tar $( BINS:%= client/%)
2013-05-22 02:37:43 +08:00
lua_build :
2013-06-26 04:25:18 +08:00
@echo Compiling liblua, using platform $( LUAPLATFORM)
cd ../liblua && make $( LUAPLATFORM)
2013-05-22 02:37:43 +08:00
2009-04-09 14:43:20 +08:00
.PHONY : all clean