2006-10-06 09:58:19 +02:00
|
|
|
# $Id: Makefile.esb,v 1.2 2006/10/06 07:58:19 adamdunkels Exp $
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
SENSORS = sensors.c irq.c button-sensor.c pir-sensor.c vib-sensor.c \
|
|
|
|
sound-sensor.c radio-sensor.c ctsrts-sensor.c battery-sensor.c \
|
|
|
|
temperature-sensor.c
|
2006-10-06 09:58:19 +02:00
|
|
|
ESB = ir.c beep.c ds1629.c tr1001-drv.c tr1001-gcr.c gcr.c esb-sensors.c node-id.c
|
2006-06-18 00:41:10 +02:00
|
|
|
CONTIKI_TARGET_DIRS = . dev apps net loader
|
2006-10-06 09:58:19 +02:00
|
|
|
ifndef CONTIKI_TARGET_MAIN
|
2006-06-18 00:41:10 +02:00
|
|
|
CONTIKI_TARGET_MAIN = contiki-esb-main.c
|
2006-10-06 09:58:19 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += $(SENSORS) $(ESB) \
|
|
|
|
contiki-esb-default-init-lowlevel.c \
|
|
|
|
contiki-esb-default-init-apps.c contiki-esb-default-init-net.c \
|
|
|
|
rs232.c fader.c $(CONTIKI_TARGET_MAIN)
|
|
|
|
|
2006-10-06 09:58:19 +02:00
|
|
|
include $(CONTIKI)/platform/$(TARGET)/apps/Makefile.apps
|
|
|
|
|
|
|
|
#PROJECT_OBJECTFILES += $(OBJECTDIR)/contiki-esb-main.o
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
MCU=msp430x149
|
|
|
|
include $(CONTIKI)/cpu/msp430/Makefile.msp430
|
|
|
|
|
2006-10-06 09:58:19 +02:00
|
|
|
contiki-$(TARGET).a: ${addprefix $(OBJECTDIR)/,symbols.o}
|
2006-06-18 00:41:10 +02:00
|
|
|
# $(AR) rcf $@ $^
|
|
|
|
|
|
|
|
ifndef BASE_IP
|
|
|
|
BASE_IP := 172.16.1.1
|
|
|
|
endif
|
|
|
|
|
|
|
|
send: $(CONTIKI)/tools/codeprop.c
|
|
|
|
cc -Wall $^ -o send
|
|
|
|
|
|
|
|
%.send: %.cm send
|
|
|
|
send $(BASE_IP) $<
|