2019-06-02 06:25:25 +08:00
|
|
|
|
2019-08-31 04:10:06 +08:00
|
|
|
include Makefile.defs
|
2019-06-02 04:49:28 +08:00
|
|
|
-include Makefile.platform
|
|
|
|
-include .Makefile.options.cache
|
2019-08-08 22:57:33 +08:00
|
|
|
include common_arm/Makefile.hal
|
2019-03-11 07:21:14 +08:00
|
|
|
|
2019-08-31 03:55:13 +08:00
|
|
|
# preserve relative DESTDIR path for subdir makes
|
|
|
|
ifneq (,$(DESTDIR))
|
|
|
|
# realpath needs the directory to exist
|
|
|
|
$(shell $(MKDIR) $(DESTDIR))
|
|
|
|
MYDESTDIR:=$(realpath $(DESTDIR))
|
|
|
|
ifeq (,$(MYDESTDIR))
|
|
|
|
$(error Can't create $(DESTDIR))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2020-05-22 23:47:30 +08:00
|
|
|
all clean install uninstall check: %: client/% bootrom/% armsrc/% recovery/% mfkey/% nonce2key/% mf_nonce_brute/% fpga_compress/%
|
2020-05-23 01:20:44 +08:00
|
|
|
# hitag2crack toolsuite is not yet integrated in "all", it must be called explicitly: "make hitag2crack"
|
|
|
|
#all clean install uninstall check: %: hitag2crack/%
|
2018-02-04 21:54:35 +08:00
|
|
|
|
2019-08-31 04:29:01 +08:00
|
|
|
INSTALLTOOLS=pm3_eml2lower.sh pm3_eml2upper.sh pm3_mfdread.py pm3_mfd2eml.py pm3_eml2mfd.py findbits.py rfidtest.pl xorcheck.py
|
|
|
|
INSTALLSIMFW=sim011.bin sim011.sha512.txt
|
2019-09-09 07:07:46 +08:00
|
|
|
INSTALLSCRIPTS=pm3 pm3-flash pm3-flash-all pm3-flash-bootrom pm3-flash-fullimage
|
2019-08-31 05:35:29 +08:00
|
|
|
INSTALLSHARES=tools/jtag_openocd traces
|
|
|
|
INSTALLDOCS=doc/*.md doc/md
|
2019-08-31 04:29:01 +08:00
|
|
|
|
2019-09-05 06:27:15 +08:00
|
|
|
install: all common/install
|
|
|
|
|
|
|
|
common/install:
|
2019-08-31 04:29:01 +08:00
|
|
|
$(info [@] Installing common resources to $(MYDESTDIR)$(PREFIX)...)
|
2019-08-31 05:35:29 +08:00
|
|
|
ifneq (,$(INSTALLSCRIPTS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLBINRELPATH)
|
|
|
|
$(Q)$(CP) $(INSTALLSCRIPTS) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLBINRELPATH)
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
|
|
|
ifneq (,$(INSTALLSHARES))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
|
|
|
$(Q)$(CP) $(INSTALLSHARES) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
|
|
|
ifneq (,$(INSTALLDOCS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLDOCSRELPATH)
|
|
|
|
$(Q)$(CP) $(INSTALLDOCS) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLDOCSRELPATH)
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
2019-08-31 04:29:01 +08:00
|
|
|
ifneq (,$(INSTALLTOOLS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLTOOLSRELPATH)
|
|
|
|
$(Q)$(CP) $(foreach tool,$(INSTALLTOOLS),tools/$(tool)) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLTOOLSRELPATH)
|
2019-08-31 04:29:01 +08:00
|
|
|
endif
|
|
|
|
ifneq (,$(INSTALLSIMFW))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
|
|
|
$(Q)$(CP) $(foreach fw,$(INSTALLSIMFW),tools/simmodule/$(fw)) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
2019-08-31 04:29:01 +08:00
|
|
|
endif
|
|
|
|
ifeq ($(platform),Linux)
|
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(UDEV_PREFIX)
|
|
|
|
$(Q)$(CP) driver/77-pm3-usb-device-blacklist.rules $(DESTDIR)$(UDEV_PREFIX)/77-pm3-usb-device-blacklist.rules
|
|
|
|
endif
|
|
|
|
|
2019-09-05 06:27:15 +08:00
|
|
|
uninstall: common/uninstall
|
|
|
|
|
|
|
|
common/uninstall:
|
2019-08-31 04:29:01 +08:00
|
|
|
$(info [@] Uninstalling common resources from $(MYDESTDIR)$(PREFIX)...)
|
2019-08-31 05:35:29 +08:00
|
|
|
ifneq (,$(INSTALLSCRIPTS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RM) $(foreach script,$(INSTALLSCRIPTS),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLBINRELPATH)$(PATHSEP)$(notdir $(script)))
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
|
|
|
ifneq (,$(INSTALLSHARES))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RMDIR) $(foreach share,$(INSTALLSHARES),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)$(PATHSEP)$(notdir $(share)))
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
|
|
|
ifneq (,$(INSTALLDOCS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RMDIR) $(foreach doc,$(INSTALLDOCS),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLDOCSRELPATH)$(PATHSEP)$(notdir $(doc)))
|
|
|
|
$(Q)$(RMDIR_SOFT) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLDOCSRELPATH)
|
2019-08-31 05:35:29 +08:00
|
|
|
endif
|
2019-08-31 04:29:01 +08:00
|
|
|
ifneq (,$(INSTALLTOOLS))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RM) $(foreach tool,$(INSTALLTOOLS),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLTOOLSRELPATH)$(PATHSEP)$(notdir $(tool)))
|
2019-08-31 04:29:01 +08:00
|
|
|
endif
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RMDIR_SOFT) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLTOOLSRELPATH)
|
2019-08-31 04:29:01 +08:00
|
|
|
ifneq (,$(INSTALLSIMFW))
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RM) $(foreach fw,$(INSTALLSIMFW),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(notdir $(fw)))
|
2019-08-31 04:29:01 +08:00
|
|
|
endif
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RMDIR_SOFT) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
2019-08-31 04:29:01 +08:00
|
|
|
ifeq ($(platform),Linux)
|
|
|
|
$(Q)$(RM) $(DESTDIR)$(UDEV_PREFIX)/77-pm3-usb-device-blacklist.rules
|
|
|
|
endif
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RMDIR_SOFT) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
2019-08-31 04:29:01 +08:00
|
|
|
|
2020-05-22 23:47:30 +08:00
|
|
|
# tests
|
|
|
|
mfkey/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
nonce2key/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
mf_nonce_brute/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
fpga_compress/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
bootrom/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
armsrc/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
client/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
recovery/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
2020-05-23 01:20:44 +08:00
|
|
|
hitag2crack/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
2020-05-22 23:47:30 +08:00
|
|
|
common/check: FORCE
|
|
|
|
$(info [*] CHECK $(patsubst %/check,%,$@))
|
|
|
|
$(Q)$(BASH) tools/pm3_tests.sh $(CHECKARGS) $(patsubst %/check,%,$@)
|
|
|
|
check: common/check
|
|
|
|
$(info [*] ALL CHECKS DONE)
|
|
|
|
|
2018-02-04 21:54:35 +08:00
|
|
|
mfkey/%: FORCE
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C tools/mfkey $(patsubst mfkey/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2018-02-04 21:54:35 +08:00
|
|
|
nonce2key/%: FORCE
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C tools/nonce2key $(patsubst nonce2key/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2020-05-15 23:37:22 +08:00
|
|
|
mf_nonce_brute/%: FORCE
|
|
|
|
$(info [*] MAKE $@)
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C tools/mf_nonce_brute $(patsubst mf_nonce_brute/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2019-08-09 20:41:44 +08:00
|
|
|
fpga_compress/%: FORCE
|
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C tools/fpga_compress $(patsubst fpga_compress/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2019-06-01 07:37:02 +08:00
|
|
|
bootrom/%: FORCE cleanifplatformchanged
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C bootrom $(patsubst bootrom/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2019-08-09 20:41:44 +08:00
|
|
|
armsrc/%: FORCE cleanifplatformchanged fpga_compress/%
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C armsrc $(patsubst armsrc/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2009-12-22 20:50:34 +08:00
|
|
|
client/%: FORCE
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C client $(patsubst client/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2019-09-05 01:14:34 +08:00
|
|
|
recovery/all: bootrom/all armsrc/all
|
|
|
|
recovery/install: bootrom/all armsrc/all
|
|
|
|
recovery/%: FORCE cleanifplatformchanged
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [*] MAKE $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(MAKE) --no-print-directory -C recovery $(patsubst recovery/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2020-05-23 01:20:44 +08:00
|
|
|
hitag2crack/%: FORCE
|
|
|
|
$(info [*] MAKE $@)
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C tools/hitag2crack $(patsubst hitag2crack/%,%,$@) DESTDIR=$(MYDESTDIR)
|
2009-09-06 06:45:53 +08:00
|
|
|
FORCE: # Dummy target to force remake in the subdirectories, even if files exist (this Makefile doesn't know about the prerequisites)
|
|
|
|
|
2020-05-23 01:20:44 +08:00
|
|
|
.PHONY: all clean install uninstall help _test bootrom fullimage recovery client mfkey nonce2key mf_nonce_brute hitag2crack style miscchecks release FORCE udev accessrights cleanifplatformchanged
|
2009-09-06 06:45:53 +08:00
|
|
|
|
2009-08-31 06:35:12 +08:00
|
|
|
help:
|
2019-03-17 07:02:58 +08:00
|
|
|
@echo "Multi-OS Makefile"
|
|
|
|
@echo
|
|
|
|
@echo "Possible targets:"
|
2019-08-30 16:28:56 +08:00
|
|
|
@echo "+ all - Make all targets: bootrom, fullimage and OS-specific host tools"
|
|
|
|
@echo "+ clean - Clean in all targets"
|
|
|
|
@echo "+ .../clean - Clean in specified target and its deps, e.g. bootrom/clean"
|
2019-09-24 21:16:09 +08:00
|
|
|
@echo "+ (un)install - Install/uninstall Proxmark files in the system, default to /usr/local/share,"
|
2019-09-05 06:37:25 +08:00
|
|
|
@echo " else provide a PREFIX. See Maintainers.md for more options"
|
2019-03-17 07:02:58 +08:00
|
|
|
@echo
|
2019-08-30 16:28:56 +08:00
|
|
|
@echo "+ bootrom - Make bootrom"
|
|
|
|
@echo "+ fullimage - Make armsrc fullimage (includes fpga)"
|
|
|
|
@echo "+ recovery - Make bootrom and fullimage files for JTAG flashing"
|
2019-03-17 07:02:58 +08:00
|
|
|
@echo
|
2019-08-30 16:28:56 +08:00
|
|
|
@echo "+ client - Make only the OS-specific host client"
|
|
|
|
@echo "+ mfkey - Make tools/mfkey"
|
|
|
|
@echo "+ nonce2key - Make tools/nonce2key"
|
2020-05-15 23:37:22 +08:00
|
|
|
@echo "+ mf_nonce_brute - Make tools/mf_nonce_brute"
|
2020-05-23 01:20:44 +08:00
|
|
|
@echo "+ hitag2crack - Make tools/hitag2crack"
|
2019-08-30 16:28:56 +08:00
|
|
|
@echo "+ fpga_compress - Make tools/fpga_compress"
|
2019-03-17 07:02:58 +08:00
|
|
|
@echo
|
2019-08-30 16:28:56 +08:00
|
|
|
@echo "+ style - Apply some automated source code formatting rules"
|
2020-12-30 04:41:15 +08:00
|
|
|
@echo "+ cliparser - Generate cliparser TODO"
|
2020-05-22 23:47:30 +08:00
|
|
|
@echo "+ check - Run offline tests. Set CHECKARGS to pass arguments to the test script"
|
|
|
|
@echo "+ .../check - Run offline tests against specific target. See above."
|
|
|
|
@echo "+ miscchecks - Detect various encoding issues in source code"
|
2019-04-06 04:45:42 +08:00
|
|
|
@echo
|
2020-10-12 22:08:10 +08:00
|
|
|
@echo "+ udev - Sets udev rules on *nix"
|
|
|
|
@echo "+ accessrights - Ensure user belongs to correct group on *nix"
|
|
|
|
@echo
|
2019-03-17 07:02:58 +08:00
|
|
|
@echo "Possible platforms: try \"make PLATFORM=\" for more info, default is PM3RDV4"
|
2019-06-02 22:04:35 +08:00
|
|
|
@echo "To activate verbose mode, use make V=1"
|
2019-03-10 18:35:03 +08:00
|
|
|
|
2010-03-29 18:44:03 +08:00
|
|
|
client: client/all
|
|
|
|
|
2019-03-17 07:02:58 +08:00
|
|
|
bootrom: bootrom/all
|
|
|
|
|
2019-09-05 01:14:34 +08:00
|
|
|
# aliases fullimage = armsrc
|
|
|
|
|
2019-08-30 16:28:56 +08:00
|
|
|
fullimage: armsrc/all
|
|
|
|
|
2019-09-05 01:14:34 +08:00
|
|
|
fullimage/all: armsrc/all
|
|
|
|
|
2019-08-30 16:28:56 +08:00
|
|
|
fullimage/clean: armsrc/clean
|
2019-03-17 07:02:58 +08:00
|
|
|
|
2019-08-31 06:26:35 +08:00
|
|
|
fullimage/install: armsrc/install
|
|
|
|
|
2019-09-05 01:14:34 +08:00
|
|
|
fullimage/uninstall: armsrc/uninstall
|
|
|
|
|
2019-03-17 07:02:58 +08:00
|
|
|
recovery: recovery/all
|
|
|
|
|
|
|
|
mfkey: mfkey/all
|
|
|
|
|
|
|
|
nonce2key: nonce2key/all
|
|
|
|
|
2020-05-15 23:37:22 +08:00
|
|
|
mf_nonce_brute: mf_nonce_brute/all
|
|
|
|
|
2019-08-09 20:41:44 +08:00
|
|
|
fpga_compress: fpga_compress/all
|
|
|
|
|
2020-05-23 01:20:44 +08:00
|
|
|
hitag2crack: hitag2crack/all
|
|
|
|
|
2010-05-09 20:17:42 +08:00
|
|
|
newtarbin:
|
2019-08-31 03:55:13 +08:00
|
|
|
$(RM) proxmark3-$(platform)-bin.tar proxmark3-$(platform)-bin.tar.gz
|
2010-05-09 20:17:42 +08:00
|
|
|
@touch proxmark3-$(platform)-bin.tar
|
|
|
|
|
|
|
|
tarbin: newtarbin client/tarbin armsrc/tarbin bootrom/tarbin
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info GEN proxmark3-$(platform)-bin.tar)
|
|
|
|
$(Q)$(GZIP) proxmark3-$(platform)-bin.tar
|
2010-05-09 20:17:42 +08:00
|
|
|
|
2019-06-01 07:37:02 +08:00
|
|
|
# detect if there were changes in the platform definitions, requiring a clean
|
|
|
|
cleanifplatformchanged:
|
2020-05-21 01:37:05 +08:00
|
|
|
ifeq ($(PLATFORM_CHANGED),true)
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [!] Platform definitions changed, cleaning bootrom/armsrc/recovery first...)
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C bootrom clean
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C armsrc clean
|
|
|
|
$(Q)$(MAKE) --no-print-directory -C recovery clean
|
|
|
|
$(Q)echo CACHED_PLATFORM=$(PLATFORM) > .Makefile.options.cache
|
|
|
|
$(Q)echo CACHED_PLATFORM_EXTRAS=$(PLATFORM_EXTRAS) >> .Makefile.options.cache
|
|
|
|
$(Q)echo CACHED_PLATFORM_DEFS=$(PLATFORM_DEFS) >> .Makefile.options.cache
|
2019-06-01 07:37:02 +08:00
|
|
|
endif
|
|
|
|
|
2019-05-06 01:53:58 +08:00
|
|
|
# configure system to ignore PM3 device as a modem (ModemManager blacklist, effective *only* if ModemManager is not using _strict_ policy)
|
|
|
|
# Read doc/md/ModemManager-Must-Be-Discarded.md for more info
|
2016-05-17 01:04:04 +08:00
|
|
|
udev:
|
2018-08-13 03:54:31 +08:00
|
|
|
sudo cp -rf driver/77-pm3-usb-device-blacklist.rules /etc/udev/rules.d/77-pm3-usb-device-blacklist.rules
|
2016-05-17 01:04:04 +08:00
|
|
|
sudo udevadm control --reload-rules
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
# configure system to add user to the dialout group
|
|
|
|
# you need to logout, relogin to get this access right correct.
|
|
|
|
# Finally, you might need to run the proxmark3 client under SUDO on some systems
|
|
|
|
accessrights:
|
2018-01-21 02:31:04 +08:00
|
|
|
ifneq ($(wildcard /etc/arch-release),) #If user is running ArchLinux
|
|
|
|
sudo usermod -aG uucp $(USER) #Use specific command and group
|
2020-05-02 23:27:07 +08:00
|
|
|
sudo usermod -aG bluetooth $(USER) #Use specific command and group
|
2018-01-21 02:31:04 +08:00
|
|
|
else
|
2017-10-19 22:10:46 +08:00
|
|
|
sudo adduser $(USER) dialout
|
2020-05-02 23:27:07 +08:00
|
|
|
sudo adduser $(USER) bluetooth
|
2018-01-21 02:31:04 +08:00
|
|
|
endif
|
2019-03-10 18:35:03 +08:00
|
|
|
|
2017-09-19 00:59:51 +08:00
|
|
|
# easy printing of MAKE VARIABLES
|
2019-03-10 18:35:03 +08:00
|
|
|
print-%: ; @echo $* = $($*)
|
2017-09-19 00:59:51 +08:00
|
|
|
|
2020-11-29 05:23:33 +08:00
|
|
|
cliparser:
|
|
|
|
# Get list of all commands
|
2020-11-30 20:48:35 +08:00
|
|
|
cat doc/commands.md | grep -e ^\|\` | cut -f 2 -d "\`" | grep -v 'help\|list\|mem spiffs\|quit\|exit' | awk '{$$1=$$1};1' > cliparser_all_commands.tmp
|
2020-11-29 05:23:33 +08:00
|
|
|
# Get list of cliparserized commands
|
|
|
|
grep -r CLIParserInit ./client/src/ | cut -f 2 -d "\"" | awk '{$$1=$$1};1' > cliparser_done.tmp
|
|
|
|
# Determine commands that still need cliparser conversion
|
2020-11-29 06:04:26 +08:00
|
|
|
grep -xvf cliparser_done.tmp cliparser_all_commands.tmp > ./doc/cliparser_todo.txt
|
2020-11-29 05:23:33 +08:00
|
|
|
|
2019-03-09 16:11:26 +08:00
|
|
|
style:
|
2019-03-12 07:11:27 +08:00
|
|
|
# Make sure astyle is installed
|
2019-03-12 00:49:07 +08:00
|
|
|
@which astyle >/dev/null || ( echo "Please install 'astyle' package first" ; exit 1 )
|
2020-10-07 02:06:40 +08:00
|
|
|
# Remove spaces & tabs at EOL, add LF at EOF if needed on *.c, *.h, *.cpp. *.lua, *.py, *.pl, Makefile, *.v
|
2020-08-13 18:49:11 +08:00
|
|
|
find . \( -not -path "./cov-int/*" -and -not -path "./fpga/xst/*" -and \( -name "*.[ch]" -or \( -name "*.cpp" -and -not -name "*.moc.cpp" \) -or -name "*.lua" -or -name "*.py" -or -name "*.pl" -or -name "Makefile" -or -name "*.v" \) \) \
|
2019-03-28 21:28:42 +08:00
|
|
|
-exec perl -pi -e 's/[ \t]+$$//' {} \; \
|
2019-03-12 07:11:27 +08:00
|
|
|
-exec sh -c "tail -c1 {} | xxd -p | tail -1 | grep -q -v 0a$$" \; \
|
|
|
|
-exec sh -c "echo >> {}" \;
|
|
|
|
# Apply astyle on *.c, *.h, *.cpp
|
2019-10-13 06:48:12 +08:00
|
|
|
find . \( -not -path "./cov-int/*" -and \( -name "*.[ch]" -or \( -name "*.cpp" -and -not -name "*.moc.cpp" \) \) \) -exec astyle --formatted --mode=c --suffix=none \
|
2019-04-07 18:10:51 +08:00
|
|
|
--indent=spaces=4 --indent-switches \
|
2019-03-10 07:00:59 +08:00
|
|
|
--keep-one-line-blocks --max-instatement-indent=60 \
|
2019-03-10 18:20:22 +08:00
|
|
|
--style=google --pad-oper --unpad-paren --pad-header \
|
2019-03-10 07:00:59 +08:00
|
|
|
--align-pointer=name {} \;
|
2020-10-07 00:40:54 +08:00
|
|
|
# Update commands.md
|
|
|
|
[ -x client/proxmark3 ] && client/proxmark3 -m > doc/commands.md
|
2019-03-09 16:11:26 +08:00
|
|
|
|
2019-07-24 06:56:01 +08:00
|
|
|
# Detecting weird codepages and tabs.
|
2020-10-07 02:06:40 +08:00
|
|
|
ifeq ($(platform),Darwin)
|
|
|
|
miscchecks: TABSCMD=egrep -l '\t' {}
|
|
|
|
else
|
|
|
|
miscchecks: TABSCMD=grep -lP '\t' {}
|
|
|
|
endif
|
|
|
|
ifneq (,$(EDIT))
|
|
|
|
miscchecks: TABSCMD+= && vi {} -c ':set tabstop=4' -c ':set et|retab' -c ':wq'
|
|
|
|
endif
|
2020-05-22 23:47:30 +08:00
|
|
|
miscchecks:
|
2020-10-07 02:06:40 +08:00
|
|
|
# Make sure recode is installed
|
2020-03-30 17:03:43 +08:00
|
|
|
@which recode >/dev/null || ( echo "Please install 'recode' package first" ; exit 1 )
|
2019-08-13 23:51:11 +08:00
|
|
|
@echo "Files with suspicious chars:"
|
2020-10-07 02:06:40 +08:00
|
|
|
@find . \( -not -path "./cov-int/*" -and -not -path "./client/deps/*" -and \( -name "*.[ch]" -or -name "*.cpp" -or -name "*.lua" -or -name "*.py" -or -name "*.pl" -or -name "Makefile" -or -name "*.v" \) \) \
|
2019-04-06 04:44:50 +08:00
|
|
|
-exec sh -c "cat {} |recode utf8.. >/dev/null || echo {}" \;
|
2020-10-07 02:06:40 +08:00
|
|
|
ifneq (,$(EDIT))
|
|
|
|
@echo "Files with tabs: (EDIT enabled, files will be rewritten!)"
|
2020-03-30 17:03:43 +08:00
|
|
|
else
|
2020-10-07 02:06:40 +08:00
|
|
|
@echo "Files with tabs: (rerun with EDIT=1 if you want to convert them with vim)"
|
2020-03-30 17:03:43 +08:00
|
|
|
endif
|
2020-10-07 02:06:40 +08:00
|
|
|
# to remove tabs within lines, one can try with: vi $file -c ':set tabstop=4' -c ':set et|retab' -c ':wq'
|
|
|
|
@find . \( -not -path "./cov-int/*" -and -not -path "./client/deps/*" -and \( -name "*.[ch]" -or \( -name "*.cpp" -and -not -name "*.moc.cpp" \) -or -name "*.lua" -or -name "*.py" -or -name "*.pl" -or -name "*.md" -or -name "*.txt" -or -name "*.awk" -or -name "*.v" \) \) \
|
|
|
|
-exec sh -c "$(TABSCMD)" \;
|
2019-08-13 23:51:11 +08:00
|
|
|
# @echo "Files with printf \\\\t:"
|
|
|
|
# @find . \( -name "*.[ch]" -or \( -name "*.cpp" -and -not -name "*.moc.cpp" \) -or -name "*.lua" -or -name "*.py" -or -name "*.pl" -or -name "*.md" -or -name "*.txt" -or -name "*.awk" -or -name "*.v" \) \
|
|
|
|
# -exec grep -lP '\\t' {} \;
|
2019-04-06 04:44:50 +08:00
|
|
|
|
2020-05-20 20:02:47 +08:00
|
|
|
release: VERSION="v4.$(shell git log --oneline master | wc -l)"
|
|
|
|
release:
|
2020-05-22 19:33:03 +08:00
|
|
|
$(if $(findstring master,$(shell git rev-parse --abbrev-ref HEAD)),,$(error "!!! you are not on master branch, aborting"))
|
|
|
|
$(if $(findstring dirty,$(shell git describe --dirty --always)),$(error "!!! you have pending changes, aborting"))
|
|
|
|
$(if $(RELEASE_NAME),,$(error "!!! missing RELEASE_NAME, aborting"))
|
2020-05-21 17:05:09 +08:00
|
|
|
# Preparing a commit for release tagging, to be reverted after tagging.
|
|
|
|
@echo "# - Release Tag: $(VERSION)"
|
2020-05-21 01:37:05 +08:00
|
|
|
@echo "# - Release Name: $(RELEASE_NAME)"
|
2020-05-20 20:02:47 +08:00
|
|
|
# - Removing -Werror...
|
|
|
|
@find . \( -path "./Makefile.defs" -or -path "./client/Makefile" -or -path "./common_arm/Makefile.common" -or -path "./tools/hitag2crack/*/Makefile" \) -exec sed -i 's/ -Werror//' {} \;
|
|
|
|
@find . \( -path "./client/deps/*.cmake" -or -path "./client/CMakeLists.txt" \) -exec sed -i 's/ -Werror//' {} \;
|
|
|
|
# - Changing banner...
|
2020-05-21 01:37:05 +08:00
|
|
|
@sed -i "s/^#define BANNERMSG3 .*/#define BANNERMSG3 \"Release $(VERSION) - $(RELEASE_NAME)\"/" client/src/proxmark3.c
|
2020-05-20 20:02:47 +08:00
|
|
|
@echo -n "# ";grep "^#define BANNERMSG3" client/src/proxmark3.c
|
2020-05-21 18:05:15 +08:00
|
|
|
# - Committing temporarily...
|
2020-05-21 01:37:05 +08:00
|
|
|
@git commit -a -m "Release $(VERSION) - $(RELEASE_NAME)"
|
2020-05-21 18:05:15 +08:00
|
|
|
# - Tagging temporarily...
|
2020-05-21 01:37:05 +08:00
|
|
|
@git tag -a -m "Release $(VERSION) - $(RELEASE_NAME)" $(VERSION)
|
2020-05-21 18:05:15 +08:00
|
|
|
# - Changing default version information based on new tag
|
2020-05-22 19:44:35 +08:00
|
|
|
@$(SH) tools/mkversion.sh > common/default_version.c.tmp && $(MV) common/default_version.c.tmp common/default_version.c
|
2020-05-22 19:02:52 +08:00
|
|
|
# - Removing mkversion calls
|
|
|
|
@sed -i 's#^.*\.\./tools/mkversion.sh.*|| #\t$$(Q)#' client/Makefile bootrom/Makefile armsrc/Makefile
|
|
|
|
@sed -i '/COMMAND/s/sh .*|| //' client/CMakeLists.txt
|
2020-05-21 18:05:15 +08:00
|
|
|
# - Deleting tag...
|
|
|
|
@git tag -d $(VERSION)
|
|
|
|
# - Amending commit...
|
|
|
|
@git commit -a --amend -m "Release $(VERSION) - $(RELEASE_NAME)"
|
|
|
|
# - Tagging again...
|
|
|
|
@git tag -a -m "Release $(VERSION) - $(RELEASE_NAME)" $(VERSION)
|
|
|
|
# - Reverting tagged commit...
|
2020-05-20 20:02:47 +08:00
|
|
|
@git revert --no-edit HEAD
|
2020-05-21 18:24:54 +08:00
|
|
|
@echo "==================================================================="
|
2020-05-22 04:04:21 +08:00
|
|
|
@echo "Done! You can now execute 'git push && git push origin $(VERSION)'"
|
2020-05-20 20:02:47 +08:00
|
|
|
|
2009-08-31 11:12:45 +08:00
|
|
|
# Dummy target to test for GNU make availability
|
|
|
|
_test:
|