nes-proj/examples/compile-platforms/Makefile

22 lines
635 B
Makefile
Raw Normal View History

all:
@rm -f *.output
@echo Compiling on:
@uname -a
@$(MAKE) -s -k compile || cat *.output
2008-10-17 17:55:13 +00:00
compile: 6502 msp430 native avr
6502: c64.platform c128.platform apple2enh.platform
msp430: sky.platform esb.platform # msb430.platform
native: native.platform netsim.platform minimal-net.platform
2008-10-17 17:55:13 +00:00
avr: avr-raven
%.platform:
@mkdir -p $*
@cp *.c $*
@cp Makefile.platform $*/Makefile
@((echo; echo ------------------- $* -------------------; \
cd $* ; ($(MAKE) TARGET=$* > /dev/null 2>&1 ) ; \
$(MAKE) TARGET=$*) > $*.output 2>&1 && echo "$* succeeded") || \
(echo; echo "$* failed"; exit 1)