mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
516 B
Makefile
18 lines
516 B
Makefile
|
# include contrib code (platform adaption and client implementation)
|
||
|
USEMODULE += wakaama_contrib
|
||
|
|
||
|
# this allows us to include our own objects, implemented in the 'objects'
|
||
|
# folder, by adding 'wakaama_objects_<objectName>' modules
|
||
|
USEMODULE += wakaama_objects
|
||
|
|
||
|
# include the 'device' object implementation (mandatory)
|
||
|
USEMODULE += wakaama_objects_device
|
||
|
|
||
|
USEMODULE += xtimer
|
||
|
USEPKG += tlsf
|
||
|
|
||
|
# If logs for the package are active, we need fmt
|
||
|
ifneq (,$(filter -DLWM2M_WITH_LOGS,$(CFLAGS)))
|
||
|
USEMODULE += fmt
|
||
|
endif
|