]> git.zerfleddert.de Git - proxmark3-svn/blame - Makefile
Make objcopy call less verbose
[proxmark3-svn] / Makefile
CommitLineData
db335b3d 1include common/Makefile.common
2
3ifeq ($(DETECTED_OS),Linux)
4HOST_BINARY=linux
5else
6HOST_BINARY=winsrc
7endif
8
9all clean: %:
10 $(MAKE) -C bootrom $@
11 $(MAKE) -C armsrc $@
12 $(MAKE) -C $(HOST_BINARY) $@
13
14.PHONY: all clean help
15help:
16 @echo Multi-OS Makefile, you are running on $(DETECTED_OS)
17 @echo Possible targets:
18 @echo + all - Make bootrom, armsrc and the OS-specific host directory
19 @echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
20
Impressum, Datenschutz