From 3877f361e41c674ff038f7987a83a625ba32e314 Mon Sep 17 00:00:00 2001 From: Johannes Gilger Date: Wed, 30 Jan 2013 15:32:41 +0100 Subject: [PATCH] Load Makefile.target for slip-radio This loads Makefile.target into Makefile so we can check for TARGET==sky when building this. Compilation for sky fails without it. Signed-off-by: Johannes Gilger --- examples/ipv6/slip-radio/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/ipv6/slip-radio/Makefile b/examples/ipv6/slip-radio/Makefile index f7a755961..ff6387136 100644 --- a/examples/ipv6/slip-radio/Makefile +++ b/examples/ipv6/slip-radio/Makefile @@ -2,6 +2,10 @@ CONTIKI_PROJECT=slip-radio all: $(CONTIKI_PROJECT) APPS = slip-cmd +ifeq ($(TARGET),) + -include Makefile.target +endif + CONTIKI=../../.. WITH_UIP6=1