mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
300 B
Makefile
14 lines
300 B
Makefile
MODULE = cbor
|
|
|
|
CFLAGS += -DCBOR_NO_PRINT
|
|
ifneq ($(shell uname -s),Darwin)
|
|
CFLAGS += -D_XOPEN_SOURCE=600
|
|
endif
|
|
|
|
ifeq (,$(filter native,$(BOARD)))
|
|
# build the minimal subset for non-native
|
|
CFLAGS += -DCBOR_NO_FLOAT -DCBOR_NO_PRINT -DCBOR_NO_SEMANTIC_TAGGING
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|