2006-06-17 22:41:10 +00:00
|
|
|
ifndef CONTIKI
|
|
|
|
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
|
|
|
endif
|
|
|
|
|
|
|
|
CONTIKI_TARGET_DIRS = . dev apps net
|
|
|
|
|
|
|
|
SENSORS = sensors.c beep.c button-sensor.c pir-sensor.c vib-sensor.c \
|
2006-10-06 08:25:30 +00:00
|
|
|
radio-sensor.c irq.c eeprom.c \
|
2006-06-17 22:41:10 +00:00
|
|
|
dummy-sensors.c leds.c leds-arch.c esb-sensors.c
|
2009-03-17 15:56:32 +00:00
|
|
|
NETSIM = ether.c ethernode.c ethernode-uip.c lpm.c rs232.c flash.c \
|
|
|
|
node.c nodes.c sensor.c display.c random.c radio.c \
|
|
|
|
dlloader.c main.c netsim-init.c contiki-main.c symtab.c symbols.c tr1001.c tr1001-drv.c cfs-posix.c cfs-posix-dir.c
|
2006-06-17 22:41:10 +00:00
|
|
|
|
2007-04-01 21:05:17 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
2007-05-20 21:41:31 +00:00
|
|
|
CONTIKI_TARGET_SOURCEFILES = $(NETSIM) $(SENSORS) wpcap-drv.c wpcap.c
|
2007-04-01 21:05:17 +00:00
|
|
|
else
|
2007-05-20 21:41:31 +00:00
|
|
|
CONTIKI_TARGET_SOURCEFILES = $(NETSIM) $(SENSORS) tapdev-drv.c tapdev.c
|
2007-04-01 21:05:17 +00:00
|
|
|
endif
|
2006-06-17 22:41:10 +00:00
|
|
|
|
|
|
|
CONTIKI_SOURCEFILES += $(CONTIKI_TARGET_SOURCEFILES)
|
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
|
|
|
|
### Define the CPU directory
|
2007-03-28 20:14:59 +00:00
|
|
|
CONTIKI_CPU=$(CONTIKI)/cpu/native
|
|
|
|
include $(CONTIKI)/cpu/native/Makefile.native
|
2006-06-17 22:41:10 +00:00
|
|
|
|
|
|
|
### Compiler definitions
|
2009-03-17 15:56:32 +00:00
|
|
|
CFLAGS += $(shell gtk-config --cflags) -DNETSIM=1
|
|
|
|
TARGET_LIBFILES = $(shell gtk-config --libs)
|
2006-06-17 22:41:10 +00:00
|
|
|
|
2007-04-01 21:05:17 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
TARGET_LIBFILES += /lib/w32api/libws2_32.a /lib/w32api/libiphlpapi.a
|
|
|
|
endif
|