From 63eb4acf55ac35a000ffc592b59dcb44a87162c4 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 7 Nov 2013 13:29:36 -0800 Subject: [PATCH] adopted exemplary project Makefile to new structure --- dist/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dist/Makefile b/dist/Makefile index 84c5be3b45..22423602cb 100644 --- a/dist/Makefile +++ b/dist/Makefile @@ -4,7 +4,6 @@ #### The Sample Filesystem Layout is: #### /this makefile #### ../../RIOT -#### ../../boards for board definitions (if you have one or more) #### # name of your project @@ -12,13 +11,16 @@ export PROJECT =foobar # for easy switching of boards ifeq ($(strip $(BOARD)),) - export BOARD = msba2 + export BOARD = native endif # this has to be the absolute path of the RIOT-base dir export RIOTBASE =$(CURDIR)/../../RIOT -export RIOTCPU =$(CURDIR)/../../RIOT/cpu -export RIOTBOARD =$(CURDIR)/../../boards + +# uncomment these lines if you want to use platform support from external +# repositories +#export RIOTCPU =$(CURDIR)/../../RIOT/thirdparty_cpu +#export RIOTBOARD =$(CURDIR)/../../RIOT/thirdparty_boards ## Modules to include.