b20f493e09
This commit moves the BLE/IPv6 example to the platform-specific directory, since we only support one platform currently. The pull also tidies up the example Makefile a bit: We no longer need to specify the name for project-conf.h so we remove this. We add PLATFORMS_ONLY and BOARDS_ONLY
11 lines
247 B
Makefile
11 lines
247 B
Makefile
CONTIKI_PROJECT=client
|
|
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
PLATFORMS_ONLY = srf06-cc26xx
|
|
BOARDS_ONLY = launchpad/cc2650 sensortag/cc2650 srf06/cc26xx
|
|
|
|
MAKE_MAC = MAKE_MAC_BLE
|
|
MAKE_NET = MAKE_NET_IPV6
|
|
CONTIKI = ../../../..
|
|
include $(CONTIKI)/Makefile.include |