Make objcopy call less verbose

Add master Makefile
This commit is contained in:
henryk@ploetzli.ch 2009-08-30 22:35:12 +00:00
commit db335b3de0
4 changed files with 33 additions and 13 deletions

20
Makefile Normal file
View 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