nes-proj/arch/cpu/native/Makefile.native

38 lines
712 B
Makefile
Raw Normal View History

CONTIKI_CPU_DIRS = . net dev
2017-11-10 16:00:23 +00:00
CONTIKI_SOURCEFILES += rtimer-arch.c watchdog.c eeprom.c
### Compiler definitions
CC ?= gcc
ifdef LD_OVERRIDE
LD = $(LD_OVERRIDE)
else
LD = gcc
endif
AS ?= as
NM ?= nm
OBJCOPY ?= objcopy
STRIP ?= strip
ifeq ($(WERROR),1)
CFLAGSWERROR=-Werror
endif
CFLAGSNO = -Wall -g -I/usr/local/include $(CFLAGSWERROR)
CFLAGS += $(CFLAGSNO)
2013-02-26 19:29:04 +00:00
ifeq ($(HOST_OS),Darwin)
AROPTS = -r
LDFLAGS += -Wl,-flat_namespace
CFLAGS += -DHAVE_SNPRINTF=1 -U__ASSERT_USE_STDERR
else
ifeq ($(HOST_OS),Linux)
LDFLAGS += -Wl,-Map=contiki-$(TARGET).map,-export-dynamic
endif
endif
2017-10-08 12:47:34 +00:00
MAKE_MAC ?= MAKE_MAC_NULLMAC
### Compilation rules
%.so: $(OBJECTDIR)/%.o
2017-10-08 12:47:34 +00:00
$(LD) -shared -o $@ $^