mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 18:47:24 -07:00
Make objcopy call less verbose
Add master Makefile
This commit is contained in:
parent
269a820f9e
commit
db335b3de0
4 changed files with 33 additions and 13 deletions
20
Makefile
Normal file
20
Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
include common/Makefile.common
|
||||
|
||||
ifeq ($(DETECTED_OS),Linux)
|
||||
HOST_BINARY=linux
|
||||
else
|
||||
HOST_BINARY=winsrc
|
||||
endif
|
||||
|
||||
all clean: %:
|
||||
$(MAKE) -C bootrom $@
|
||||
$(MAKE) -C armsrc $@
|
||||
$(MAKE) -C $(HOST_BINARY) $@
|
||||
|
||||
.PHONY: all clean help
|
||||
help:
|
||||
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
||||
@echo Possible targets:
|
||||
@echo + all - Make bootrom, armsrc and the OS-specific host directory
|
||||
@echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue