#-*-Makefile-*- vim:syntax=make #$Id$ DELUGE_DIR ?= $(TOSDIR)/lib/net/Deluge DELUGE_EXTRA ?= $(DELUGE_DIR)/extra TOSBOOT_DIR ?= $(TOSDIR)/lib/tosboot/build ifeq ($(TINYOS_NP),BNP) CFLAGS += -DDELUGE CFLAGS += -I$(TOSDIR)/lib/net -I$(TOSDIR)/lib/net/drip -I$(DELUGE_DIR) -I$(DELUGE_DIR)/FlashVolumeManager -I$(DELUGE_DIR)/BlockStorageManager ifneq ($(filter telosb tmote,$(TARGETS)),) CFLAGS += -I$(DELUGE_EXTRA) -I$(DELUGE_EXTRA)/msp430 -I$(DELUGE_EXTRA)/telos -I$(DELUGE_EXTRA)/telosb ifeq ($(filter docs,$(GOALS)),) CFLAGS += -Wl,--section-start=.text=0x4a00,--defsym=_reset_vector__=0x4000 endif BOOTLOADER ?= $(TOSBOOT_DIR)/telosb/main.ihex ifeq ($(shell [ -f /bin/cygwin1.dll ] && echo cygwin),cygwin) BOOTLOADER := $(shell cygpath -m $(BOOTLOADER)) endif endif ifeq ($(TARGETS),micaz) CFLAGS += -I$(DELUGE_EXTRA) -I$(DELUGE_EXTRA)/avr -I$(DELUGE_EXTRA)/micaz -I$(DELUGE_EXTRA)/mica2 BOOTLOADER ?= $(TOSBOOT_DIR)/micaz/main.ihex AVR_FUSE_H ?= 0xda endif ifeq ($(TARGETS),iris) CFLAGS += -I$(DELUGE_EXTRA)/iris -I$(DELUGE_EXTRA)/micaz -I$(DELUGE_EXTRA)/mica2 -I$(DELUGE_EXTRA)/avr -I$(DELUGE_EXTRA) BOOTLOADER ?= $(TOSBOOT_DIR)/iris/main.ihex AVR_FUSE_H ?= 0xda endif endif