Fixed problem that made error output not visible
This commit is contained in:
parent
963cc8b31e
commit
0074e4248b
@ -12,6 +12,6 @@ native: native.platform netsim.platform minimal-net.platform
|
||||
@cp *.c $*
|
||||
@cp Makefile.platform $*/Makefile
|
||||
@(echo; echo ------------------- $* -------------------; \
|
||||
cd $* ; $(MAKE) TARGET=$* hello-world >& /dev/null ; \
|
||||
$(MAKE) TARGET=$* hello-world) >& $*.output || \
|
||||
echo "$* failed"
|
||||
cd $* ; ($(MAKE) TARGET=$* >& /dev/null) ; \
|
||||
$(MAKE) TARGET=$*) >& $*.output || \
|
||||
(echo; echo "$* failed"; exit 1)
|
||||
|
@ -1,2 +1,3 @@
|
||||
all: hello-world
|
||||
CONTIKI = ../../..
|
||||
include $(CONTIKI)/Makefile.include
|
||||
|
@ -28,7 +28,7 @@
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: hello-world.c,v 1.1 2007/11/27 20:50:54 adamdunkels Exp $
|
||||
* $Id: hello-world.c,v 1.2 2007/11/27 21:58:07 adamdunkels Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user