Blame view

RIOT/sys/cbor/Makefile 300 Bytes
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
  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