2017-07-28 02:59:54 +08:00
|
|
|
GZIP=gzip
|
|
|
|
# Windows' echo echos its input verbatim, on Posix there is some
|
|
|
|
# amount of shell command line parsing going on. echo "" on
|
|
|
|
# Windows yields literal "", on Linux yields an empty line
|
|
|
|
ifeq ($(shell echo ""),)
|
|
|
|
# This is probably a proper system, so we can use uname
|
|
|
|
DELETE=rm -rf
|
|
|
|
FLASH_TOOL=client/flasher
|
|
|
|
platform=$(shell uname)
|
|
|
|
ifneq (,$(findstring MINGW,$(platform)))
|
|
|
|
FLASH_PORT=com3
|
|
|
|
PATHSEP=\\#
|
|
|
|
else
|
2013-04-24 18:57:06 +08:00
|
|
|
FLASH_PORT=/dev/ttyACM0
|
2017-07-28 02:59:54 +08:00
|
|
|
PATHSEP=/
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
# Assume that we are running on native Windows
|
|
|
|
DELETE=del /q
|
|
|
|
FLASH_TOOL=client/flasher.exe
|
|
|
|
platform=Windows
|
|
|
|
FLASH_PORT=com3
|
|
|
|
PATHSEP=\\#
|
|
|
|
endif
|
2010-05-09 20:17:42 +08:00
|
|
|
|
2018-02-04 21:54:35 +08:00
|
|
|
all clean: %: client/% bootrom/% armsrc/% recovery/% mfkey/% nonce2key/%
|
|
|
|
|
|
|
|
mfkey/%: FORCE
|
|
|
|
$(MAKE) -C tools/mfkey $(patsubst mfkey/%,%,$@)
|
|
|
|
nonce2key/%: FORCE
|
|
|
|
$(MAKE) -C tools/nonce2key $(patsubst nonce2key/%,%,$@)
|
2009-09-06 06:45:53 +08:00
|
|
|
bootrom/%: FORCE
|
|
|
|
$(MAKE) -C bootrom $(patsubst bootrom/%,%,$@)
|
|
|
|
armsrc/%: FORCE
|
|
|
|
$(MAKE) -C armsrc $(patsubst armsrc/%,%,$@)
|
2009-12-22 20:50:34 +08:00
|
|
|
client/%: FORCE
|
|
|
|
$(MAKE) -C client $(patsubst client/%,%,$@)
|
2013-03-26 20:35:54 +08:00
|
|
|
recovery/%: FORCE
|
|
|
|
$(MAKE) -C recovery $(patsubst recovery/%,%,$@)
|
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)
|
|
|
|
|
2015-06-25 18:22:34 +08:00
|
|
|
.PHONY: all clean help _test flash-bootrom flash-os flash-all FORCE
|
2009-09-06 06:45:53 +08:00
|
|
|
|
2009-08-31 06:35:12 +08:00
|
|
|
help:
|
|
|
|
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
|
|
|
@echo Possible targets:
|
2009-09-06 06:45:53 +08:00
|
|
|
@echo + all - Make bootrom, armsrc and the OS-specific host directory
|
2010-03-29 18:44:03 +08:00
|
|
|
@echo + client - Make only the OS-specific host directory
|
2009-09-06 06:45:53 +08:00
|
|
|
@echo + flash-bootrom - Make bootrom and flash it
|
2015-11-10 04:46:15 +08:00
|
|
|
@echo + flash-os - Make armsrc and flash os \(includes fpga\)
|
2015-06-25 18:22:34 +08:00
|
|
|
@echo + flash-all - Make bootrom and armsrc and flash bootrom and os image
|
2018-02-04 21:54:35 +08:00
|
|
|
@echo + mfkey - Make tools/mfkey
|
|
|
|
@echo + nounce2key - Make tools/nounce2key
|
2009-09-06 06:45:53 +08:00
|
|
|
@echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
|
2018-02-04 21:54:35 +08:00
|
|
|
|
2010-03-29 18:44:03 +08:00
|
|
|
client: client/all
|
|
|
|
|
2010-01-21 23:51:24 +08:00
|
|
|
flash-bootrom: bootrom/obj/bootrom.elf $(FLASH_TOOL)
|
2013-04-24 18:57:06 +08:00
|
|
|
$(FLASH_TOOL) $(FLASH_PORT) -b $(subst /,$(PATHSEP),$<)
|
2009-09-06 06:45:53 +08:00
|
|
|
|
2015-06-25 18:22:34 +08:00
|
|
|
flash-os: armsrc/obj/fullimage.elf $(FLASH_TOOL)
|
2013-04-24 18:57:06 +08:00
|
|
|
$(FLASH_TOOL) $(FLASH_PORT) $(subst /,$(PATHSEP),$<)
|
2010-02-27 17:20:04 +08:00
|
|
|
|
2015-06-25 18:22:34 +08:00
|
|
|
flash-all: bootrom/obj/bootrom.elf armsrc/obj/fullimage.elf $(FLASH_TOOL)
|
2013-04-24 18:57:06 +08:00
|
|
|
$(FLASH_TOOL) $(FLASH_PORT) -b $(subst /,$(PATHSEP),$(filter-out $(FLASH_TOOL),$^))
|
2009-08-31 11:12:45 +08:00
|
|
|
|
2010-05-09 20:17:42 +08:00
|
|
|
newtarbin:
|
|
|
|
$(DELETE) proxmark3-$(platform)-bin.tar proxmark3-$(platform)-bin.tar.gz
|
|
|
|
@touch proxmark3-$(platform)-bin.tar
|
|
|
|
|
|
|
|
tarbin: newtarbin client/tarbin armsrc/tarbin bootrom/tarbin
|
|
|
|
$(GZIP) proxmark3-$(platform)-bin.tar
|
|
|
|
|
2017-08-27 19:22:10 +08:00
|
|
|
# configure system
|
|
|
|
# - to ignore PM3 device as a modem (blacklist)
|
|
|
|
# - add user to the dialout group
|
|
|
|
# you may need to logout, relogin to get this access right correct.
|
|
|
|
# Finally, you might need to run the proxmark3 client under SUDO on some systems
|
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
|
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
|
|
|
|
else
|
2017-10-19 22:10:46 +08:00
|
|
|
sudo adduser $(USER) dialout
|
2018-01-21 02:31:04 +08:00
|
|
|
endif
|
2016-05-17 01:04:04 +08:00
|
|
|
|
2017-09-19 00:59:51 +08:00
|
|
|
# easy printing of MAKE VARIABLES
|
|
|
|
print-%: ; @echo $* = $($*)
|
|
|
|
|
2009-08-31 11:12:45 +08:00
|
|
|
# Dummy target to test for GNU make availability
|
|
|
|
_test:
|