mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-29 08:27:44 +08:00
Merge pull request #163 from brianpow/master
Just some small changes in the Makefile
This commit is contained in:
commit
9fa1b6e81b
2 changed files with 12 additions and 4 deletions
12
Makefile
12
Makefile
|
@ -23,7 +23,13 @@ FLASH_PORT=com3
|
|||
PATHSEP=\\#
|
||||
endif
|
||||
|
||||
all clean: %: client/% bootrom/% armsrc/% recovery/%
|
||||
all clean: %: client/% bootrom/% armsrc/% recovery/% mfkey/% nonce2key/%
|
||||
|
||||
mfkey/%: FORCE
|
||||
$(MAKE) -C tools/mfkey $(patsubst mfkey/%,%,$@)
|
||||
|
||||
nonce2key/%: FORCE
|
||||
$(MAKE) -C tools/nonce2key $(patsubst nonce2key/%,%,$@)
|
||||
|
||||
bootrom/%: FORCE
|
||||
$(MAKE) -C bootrom $(patsubst bootrom/%,%,$@)
|
||||
|
@ -45,8 +51,10 @@ help:
|
|||
@echo + flash-bootrom - Make bootrom and flash it
|
||||
@echo + flash-os - Make armsrc and flash os \(includes fpga\)
|
||||
@echo + flash-all - Make bootrom and armsrc and flash bootrom and os image
|
||||
@echo + mfkey - Make tools/mfkey
|
||||
@echo + nounce2key - Make tools/nounce2key
|
||||
@echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
|
||||
|
||||
|
||||
client: client/all
|
||||
|
||||
flash-bootrom: bootrom/obj/bootrom.elf $(FLASH_TOOL)
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
get_craptev1:
|
||||
# wget http://crapto1.netgarage.org/craptev1-v1.0.tar.xz
|
||||
wget http://crapto1.netgarage.org/craptev1-v1.1.tar.xz
|
||||
wget -N http://crapto1.netgarage.org/craptev1-v1.1.tar.xz
|
||||
tar Jxvf craptev1-v1.1.tar.xz
|
||||
|
||||
get_crapto1:
|
||||
wget http://crapto1.netgarage.org/crapto1-v3.3.tar.xz
|
||||
wget -N http://crapto1.netgarage.org/crapto1-v3.3.tar.xz
|
||||
mkdir crapto1-v3.3
|
||||
tar Jxvf crapto1-v3.3.tar.xz -C crapto1-v3.3
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue