2010-02-21 00:47:22 +00: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 12:17:42 +00: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-21 18:37:43 +00:00
2010-02-20 00:36:48 +00:00
CC = gcc
2010-02-21 00:16:42 +00:00
CXX = g++
2009-09-11 02:25:48 +00: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 01:27:07 +00:00
VPATH = ../common
2010-02-21 00:16:42 +00: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 01:27:07 +00:00
2015-01-26 20:56:33 +01:00
LDLIBS = -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lreadline -lpthread -lm
2009-09-11 02:25:48 +00:00
LDFLAGS = $( COMMON_FLAGS)
2015-01-22 21:02:21 +01:00
CFLAGS = -std= c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $( COMMON_FLAGS) -g -O4
2013-06-25 20:25:18 +00:00
LUAPLATFORM = generic
2010-02-24 19:33:29 +00:00
i f n e q ( , $( findstring MINGW ,$ ( platform ) ) )
CXXFLAGS = -I$( QTDIR) /include -I$( QTDIR) /include/QtCore -I$( QTDIR) /include/QtGui
QTLDLIBS = -L$( QTDIR) /lib -lQtCore4 -lQtGui4
2013-03-01 14:28:14 +00:00
MOC = $( QTDIR) /bin/moc
2013-06-25 20:25:18 +00:00
LUAPLATFORM = mingw
2010-02-24 19:33:29 +00:00
e l s e i f e q ( $( platform ) , D a r w i n )
2014-05-02 11:11:54 +01: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)
2013-06-26 11:02:37 +00:00
LUAPLATFORM = macosx
2010-02-24 19:33:29 +00:00
e l s e
2013-02-28 15:11:52 +00:00
CXXFLAGS = $( shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
2010-02-24 19:33:29 +00:00
QTLDLIBS = $( shell pkg-config --libs QtCore QtGui 2>/dev/null)
MOC = $( shell pkg-config --variable= moc_location QtCore)
2013-09-19 19:33:56 +00:00
LDLIBS += -ldl
2013-09-01 18:40:08 +00:00
# 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
2013-06-25 20:25:18 +00:00
LUAPLATFORM = linux
2010-02-21 01:07:11 +00:00
e n d i f
2015-01-30 15:23:01 +01:00
# QT version, 4 or 5
qtplatform = $( shell $( MOC) -v)
i f n e q ( , $( findstring moc 5,$ ( qtplatform ) ) )
CXXFLAGS = -I$( QTDIR) /include -I$( QTDIR) /include/QtCore -I$( QTDIR) /include/QtGui -I$( QTDIR) /include/QtWidgets -I/mingw/include
QTLDLIBS = -L$( QTDIR) /lib -lQt5Core -lQt5Gui -lQt5Widgets
e l s e
CXXFLAGS = -I$( QTDIR) /include -I$( QTDIR) /include/QtCore -I$( QTDIR) /include/QtGui
QTLDLIBS = -L$( QTDIR) /lib -lQtCore4 -lQtGui4
e n d i f
2010-02-24 19:33:29 +00:00
2011-09-05 11:48:08 +00:00
i f n e q ( $( QTLDLIBS ) , )
QTGUI = $( OBJDIR) /proxgui.o $( OBJDIR) /proxguiqt.o $( OBJDIR) /proxguiqt.moc.o
CFLAGS += -DHAVE_GUI
LINK.o = $( LINK.cpp)
e l s e
2010-02-21 01:07:11 +00:00
QTGUI = guidummy.o
2011-09-05 11:48:08 +00:00
e n d i f
2010-02-21 01:07:11 +00:00
2013-03-14 15:03:04 +00:00
CORESRCS = uart.c \
util.c \
sleep.c
CMDSRCS = nonce2key/crapto1.c\
nonce2key/crypto1.c\
nonce2key/nonce2key.c\
2014-05-02 11:11:54 +01:00
loclass/cipher.c \
loclass/cipherutils.c \
loclass/des.c \
loclass/ikeys.c \
2014-06-28 20:52:37 +02:00
loclass/elite_crack.c\
loclass/fileutils.c\
2011-06-07 12:35:52 +00:00
mifarehost.c\
2010-02-20 00:36:48 +00:00
crc16.c \
iso14443crc.c \
2010-10-19 14:25:17 +00: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 01:27:07 +00:00
data.c \
graph.c \
ui.c \
cmddata.c \
2014-12-28 20:33:32 -05: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 01:27:07 +00:00
cmdhf.c \
cmdhf14a.c \
cmdhf14b.c \
cmdhf15.c \
2012-08-28 21:39:50 +00: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 01:27:07 +00:00
cmdhflegic.c \
2011-05-18 12:33:32 +00:00
cmdhficlass.c \
2011-06-10 13:35:10 +00:00
cmdhfmf.c \
2015-01-20 21:23:04 +01: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 01:27:07 +00:00
cmdhw.c \
cmdlf.c \
2014-03-18 20:52:48 +00:00
cmdlfio.c \
2014-05-02 11:11:54 +01:00
cmdlfhid.c \
2013-02-28 15:11:52 +00:00
cmdlfem4x.c \
2012-09-18 13:52:50 +00: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 01:27:07 +00:00
cmdlfti.c \
cmdparser.c \
2012-12-04 23:39:18 +00:00
cmdmain.c \
2013-02-28 17:04:23 +00:00
cmdlft55xx.c \
2013-05-21 18:37:43 +00:00
cmdlfpcf7931.c\
2013-05-26 20:05:13 +00:00
pm3_binlib.c\
2013-05-24 21:05:45 +00:00
scripting.c\
2013-05-21 18:37:43 +00:00
cmdscript.c\
2013-11-06 18:34:10 +00:00
pm3_bitlib.c\
2015-01-12 21:47:36 +01:00
aes.c\
2013-02-28 15:11:52 +00:00
2013-05-24 21:05:45 +00:00
2013-03-14 15:03:04 +00:00
COREOBJS = $( CORESRCS:%.c= $( OBJDIR) /%.o)
2010-02-21 00:16:42 +00: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 01:27:07 +00:00
2009-12-22 12:52:02 +00:00
RM = rm -f
2012-12-04 23:39:18 +00:00
BINS = proxmark3 flasher #snooper cli
2010-02-21 00:16:42 +00:00
CLEAN = cli cli.exe flasher flasher.exe proxmark3 proxmark3.exe snooper snooper.exe $( CMDOBJS) $( OBJDIR) /*.o *.o *.moc.cpp
2009-12-22 12:52:02 +00:00
2013-05-21 18:37:43 +00:00
all : lua_build $( BINS )
2009-04-09 06:43:20 +00:00
2009-09-11 02:25:48 +00:00
all-static : LDLIBS :=-static $( LDLIBS )
all-static : snooper cli flasher
2009-12-22 12:52:02 +00:00
2009-09-11 02:25:48 +00:00
proxmark3 : LDLIBS +=$( QTLDLIBS )
2013-03-14 15:03:04 +00:00
proxmark3 : $( OBJDIR ) /proxmark 3.o $( COREOBJS ) $( CMDOBJS ) $( QTGUI )
2010-02-21 00:16:42 +00:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-07-02 15:12:49 +00:00
2013-03-14 15:03:04 +00:00
snooper : $( OBJDIR ) /snooper .o $( COREOBJS ) $( CMDOBJS ) $( OBJDIR ) /guidummy .o
2010-02-21 00:16:42 +00:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-04-09 06:43:20 +00:00
2013-03-14 15:03:04 +00:00
cli : $( OBJDIR ) /cli .o $( COREOBJS ) $( CMDOBJS ) $( OBJDIR ) /guidummy .o
2010-02-21 00:16:42 +00:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
2009-06-26 10:20:55 +00:00
2013-03-14 15:03:04 +00:00
flasher : $( OBJDIR ) /flash .o $( OBJDIR ) /flasher .o $( COREOBJS )
2010-02-21 00:16:42 +00:00
$( CXX) $( CXXFLAGS) $^ $( LDLIBS) -o $@
$(OBJDIR)/%.o : %.c
$( CC) $( CFLAGS) -c -o $@ $<
$(OBJDIR)/%.o : %.cpp
$( CXX) $( CXXFLAGS) -c -o $@ $<
2009-06-28 22:13:04 +00:00
2009-04-09 06:43:20 +00:00
proxguiqt.moc.cpp : proxguiqt .h
$( MOC) -o$@ $^
clean :
2009-12-22 12:52:02 +00:00
$( RM) $( CLEAN)
2013-06-26 11:02:37 +00:00
cd ../liblua && make clean
2009-04-09 06:43:20 +00:00
2010-05-09 12:17:42 +00:00
tarbin : $( BINS )
$( TAR) $( TARFLAGS) ../proxmark3-$( platform) -bin.tar $( BINS:%= client/%)
2013-05-21 18:37:43 +00:00
lua_build :
2013-06-25 20:25:18 +00:00
@echo Compiling liblua, using platform $( LUAPLATFORM)
cd ../liblua && make $( LUAPLATFORM)
2013-05-21 18:37:43 +00:00
2009-04-09 06:43:20 +00:00
.PHONY : all clean