7ea0e3b933
The target "flash" and related stuff is now in the platform makefiles.
29 lines
570 B
Makefile
29 lines
570 B
Makefile
EXE=slip-radio
|
|
all: $(EXE)
|
|
APPS = slip-cmd
|
|
|
|
ifeq ($(TARGET),)
|
|
-include Makefile.target
|
|
endif
|
|
|
|
CONTIKI=../../..
|
|
|
|
#linker optimizations
|
|
SMALL=1
|
|
|
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
|
PROJECT_SOURCEFILES += slip-net.c no-framer.c
|
|
ifeq ($(TARGET),sky)
|
|
PROJECT_SOURCEFILES += slip-radio-cc2420.c slip-radio-sky-sensors.c
|
|
endif
|
|
ifeq ($(TARGET),nooliberry)
|
|
PROJECT_SOURCEFILES += slip-radio-rf230.c
|
|
endif
|
|
ifeq ($(TARGET),econotag)
|
|
PROJECT_SOURCEFILES += slip-radio-mc1322x.c
|
|
endif
|
|
|
|
CONTIKI_WITH_RPL = 0
|
|
CONTIKI_WITH_IPV6 = 1
|
|
include $(CONTIKI)/Makefile.include
|