mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17199dbb1c
Add a command-line parameter for setting the EUI-64 of a ZEP device. This allows a native node to use a persistent ZEP address across reboots.
40 lines
676 B
Makefile
40 lines
676 B
Makefile
MODULE = cpu
|
|
|
|
DIRS += periph
|
|
|
|
ifneq (,$(filter native_vfs,$(USEMODULE)))
|
|
DIRS += vfs
|
|
endif
|
|
|
|
ifeq ($(OS),Darwin)
|
|
CFLAGS += -D_XOPEN_SOURCE=600 -D_DARWIN_C_SOURCE
|
|
endif
|
|
|
|
ifneq (,$(filter netdev_tap,$(USEMODULE)))
|
|
DIRS += netdev_tap
|
|
endif
|
|
|
|
ifneq (,$(filter socket_zep,$(USEMODULE)))
|
|
DIRS += socket_zep
|
|
endif
|
|
|
|
ifneq (,$(filter stdio_native,$(USEMODULE)))
|
|
DIRS += stdio_native
|
|
endif
|
|
|
|
ifneq (,$(filter mtd_native,$(USEMODULE)))
|
|
DIRS += mtd
|
|
endif
|
|
|
|
ifneq (,$(filter backtrace,$(USEMODULE)))
|
|
DIRS += backtrace
|
|
endif
|
|
|
|
ifneq (,$(filter native_cli_eui_provider,$(USEMODULE)))
|
|
DIRS += cli_eui_provider
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
INCLUDES = $(NATIVEINCLUDES)
|