Skip to content
Snippets Groups Projects
Commit 96c47c8e authored by adamdunkels's avatar adamdunkels
Browse files

Prepared for automatic cc65 compilation

parent 76e03317
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ all:
compile: msp430 native
6502: c64.platform apple2enh.platform
msp430: sky.platform esb.platform # msb430.platform
native: native.platform netsim.platform minimal-net.platform
......@@ -14,6 +15,6 @@ native: native.platform netsim.platform minimal-net.platform
@cp *.c $*
@cp Makefile.platform $*/Makefile
@((echo; echo ------------------- $* -------------------; \
cd $* ; ($(MAKE) TARGET=$* >& /dev/null) ; \
$(MAKE) TARGET=$*) >& $*.output && echo "$* succeeded") || \
cd $* ; ($(MAKE) TARGET=$* > /dev/null 2>&1 ) ; \
$(MAKE) TARGET=$*) > $*.output 2>&1 && echo "$* succeeded") || \
(echo; echo "$* failed"; exit 1)
all: print-version hello-world
CONTIKI = ../../..
APPS=serial-shell webserver telnetd
include $(CONTIKI)/Makefile.include
print-version:
@$(CC) --version
@$(CC) --version || echo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment