mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
5afcbf6fff
Setting UIP_CONF_IPV6 to zero from the make build command line is something that seems like it should ensure that IPv6 is disabled, but in fact it actually *enables* IPv6. This seems counter intuitive, so this patch changes the behavior of the makefiles to handle this case properly.
37 lines
870 B
Makefile
37 lines
870 B
Makefile
ifndef CONTIKI
|
|
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
AROPTS = rc
|
|
endif
|
|
|
|
CONTIKI_TARGET_DIRS = .
|
|
CONTIKI_TARGET_MAIN = ${addprefix $(OBJECTDIR)/,contiki-main.o}
|
|
|
|
CONTIKI_TARGET_SOURCEFILES = contiki-main.c clock.c leds.c leds-arch.c cfs-posix.c cfs-posix-dir.c dlloader.c
|
|
|
|
ifeq ($(HOST_OS),Windows)
|
|
CONTIKI_TARGET_SOURCEFILES += wpcap-drv.c wpcap.c
|
|
else
|
|
CONTIKI_TARGET_SOURCEFILES += tapdev-drv.c
|
|
#math
|
|
ifneq ($(UIP_CONF_IPV6),1)
|
|
CONTIKI_TARGET_SOURCEFILES += tapdev.c
|
|
else
|
|
CONTIKI_TARGET_SOURCEFILES += tapdev6.c
|
|
endif
|
|
endif
|
|
|
|
CONTIKI_SOURCEFILES += $(CONTIKI_TARGET_SOURCEFILES)
|
|
|
|
ifeq ($(HOST_OS),Windows)
|
|
TARGET_LIBFILES = /lib/w32api/libws2_32.a /lib/w32api/libiphlpapi.a
|
|
endif
|
|
|
|
.SUFFIXES:
|
|
|
|
### Define the CPU directory
|
|
CONTIKI_CPU=$(CONTIKI)/cpu/native
|
|
include $(CONTIKI)/cpu/native/Makefile.native
|