2012-02-10 17:51:35 +01:00
|
|
|
# -*- makefile -*-
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
ifndef CONTIKI
|
2013-02-11 00:28:31 +01:00
|
|
|
${error CONTIKI not defined! You must specify where Contiki resides}
|
2006-06-18 00:41:10 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET),)
|
|
|
|
-include Makefile.target
|
|
|
|
ifeq ($(TARGET),)
|
2008-10-14 22:31:46 +02:00
|
|
|
${info TARGET not defined, using target 'native'}
|
|
|
|
TARGET=native
|
2006-06-18 00:41:10 +02:00
|
|
|
else
|
2007-12-24 16:24:15 +01:00
|
|
|
${info using saved target '$(TARGET)'}
|
2006-06-18 00:41:10 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2007-12-24 16:24:15 +01:00
|
|
|
ifeq ($(DEFINES),)
|
|
|
|
-include Makefile.$(TARGET).defines
|
2008-01-04 22:01:37 +01:00
|
|
|
ifneq ($(DEFINES),)
|
|
|
|
${info using saved defines '$(DEFINES)'}
|
|
|
|
endif
|
2007-12-24 16:24:15 +01:00
|
|
|
endif
|
|
|
|
|
2012-02-22 00:57:22 +01:00
|
|
|
ifndef HOST_OS
|
|
|
|
ifeq ($(OS),Windows_NT)
|
2012-02-24 11:21:48 +01:00
|
|
|
## TODO: detect more specific Windows set-ups,
|
|
|
|
## e.g. CygWin, MingW, VisualC, Watcom, Interix
|
2012-02-22 00:57:22 +01:00
|
|
|
HOST_OS := Windows
|
|
|
|
else
|
|
|
|
HOST_OS := $(shell uname)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-10-14 10:03:28 +02:00
|
|
|
#More debug information when running in CI
|
|
|
|
ifdef CI
|
|
|
|
ifeq ($(CI),true)
|
|
|
|
V = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
usage:
|
2006-08-31 11:36:29 +02:00
|
|
|
@echo "make MAKETARGETS... [TARGET=(TARGET)] [savetarget] [targets]"
|
|
|
|
|
|
|
|
targets:
|
2012-02-17 17:54:06 +01:00
|
|
|
@ls -1 $(CONTIKI)/platform $(TARGETDIRS) | grep -v CVS
|
2006-06-18 00:41:10 +02:00
|
|
|
|
|
|
|
savetarget:
|
|
|
|
-@rm -f Makefile.target
|
2007-12-24 16:24:15 +01:00
|
|
|
@echo "saving Makefile.target"
|
2006-06-18 00:41:10 +02:00
|
|
|
@echo >Makefile.target "TARGET = $(TARGET)"
|
|
|
|
|
2007-12-24 16:24:15 +01:00
|
|
|
savedefines:
|
|
|
|
-@rm -f Makefile.$(TARGET).defines
|
|
|
|
@echo "saving Makefile.$(TARGET).defines"
|
|
|
|
@echo >Makefile.$(TARGET).defines "DEFINES = $(DEFINES)"
|
|
|
|
|
2008-11-14 22:37:45 +01:00
|
|
|
OBJECTDIR = obj_$(TARGET)
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2008-11-15 12:13:19 +01:00
|
|
|
LOWERCASE = -abcdefghijklmnopqrstuvwxyz
|
|
|
|
UPPERCASE = _ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
2013-03-16 08:48:36 +01:00
|
|
|
TARGET_UPPERCASE := ${strip ${shell echo $(TARGET) | sed y!$(LOWERCASE)!$(UPPERCASE)!}}
|
2010-10-25 00:31:17 +02:00
|
|
|
CFLAGS += -DCONTIKI=1 -DCONTIKI_TARGET_$(TARGET_UPPERCASE)=1
|
2008-11-14 22:37:45 +01:00
|
|
|
|
2013-12-11 08:50:07 +01:00
|
|
|
MODULES += core/sys core/dev core/lib
|
2013-11-28 14:05:29 +01:00
|
|
|
|
2014-11-12 10:18:29 +01:00
|
|
|
# Include IPv6, IPv4, and/or Rime
|
|
|
|
|
|
|
|
HAS_STACK = 0
|
|
|
|
ifeq ($(CONTIKI_WITH_IPV4),1)
|
|
|
|
HAS_STACK = 1
|
2014-12-01 21:02:57 +01:00
|
|
|
CFLAGS += -DNETSTACK_CONF_WITH_IPV4=1
|
2014-11-12 10:18:29 +01:00
|
|
|
MODULES += core/net/ipv4 core/net/ip
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONTIKI_WITH_RIME),1)
|
|
|
|
HAS_STACK = 1
|
2014-12-01 21:02:57 +01:00
|
|
|
CFLAGS += -DNETSTACK_CONF_WITH_RIME=1
|
2014-11-12 10:18:29 +01:00
|
|
|
MODULES += core/net/rime
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Make IPv6 the default stack
|
|
|
|
ifeq ($(HAS_STACK),0)
|
|
|
|
ifneq ($(CONTIKI_WITH_IPV6),0)
|
|
|
|
CONTIKI_WITH_IPV6 = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONTIKI_WITH_IPV6),1)
|
2014-12-01 21:02:57 +01:00
|
|
|
CFLAGS += -DNETSTACK_CONF_WITH_IPV6=1
|
2014-11-12 10:18:29 +01:00
|
|
|
ifneq ($(CONTIKI_WITH_RPL),0)
|
2014-12-02 11:29:49 +01:00
|
|
|
CONTIKI_WITH_RPL = 1
|
|
|
|
endif
|
|
|
|
MODULES += core/net/ipv6 core/net/ip
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONTIKI_WITH_RPL),1)
|
2014-11-12 10:18:29 +01:00
|
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=1
|
|
|
|
MODULES += core/net/rpl
|
2014-12-02 11:29:49 +01:00
|
|
|
else
|
|
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=0
|
2014-11-12 10:18:29 +01:00
|
|
|
endif
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
CONTIKI_SOURCEFILES += $(CONTIKIFILES)
|
|
|
|
|
2013-05-24 09:21:53 +02:00
|
|
|
CONTIKIDIRS += ${addprefix $(CONTIKI)/core/,dev lib net net/llsec net/mac net/rime \
|
2010-04-30 15:43:53 +02:00
|
|
|
net/rpl sys cfs ctk lib/ctk loader . }
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2007-04-21 17:13:14 +02:00
|
|
|
oname = ${patsubst %.c,%.o,${patsubst %.S,%.o,$(1)}}
|
2006-12-31 14:54:24 +01:00
|
|
|
|
2007-04-21 17:13:14 +02:00
|
|
|
CONTIKI_OBJECTFILES = ${addprefix $(OBJECTDIR)/,${call oname, $(CONTIKI_SOURCEFILES)}}
|
2007-04-21 16:56:52 +02:00
|
|
|
|
2007-04-21 17:13:14 +02:00
|
|
|
PROJECT_OBJECTFILES = ${addprefix $(OBJECTDIR)/,${call oname, $(PROJECT_SOURCEFILES)}}
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2013-06-21 00:45:41 +02:00
|
|
|
# Provide way to create $(OBJECTDIR) if it has been removed by make clean
|
|
|
|
$(OBJECTDIR):
|
|
|
|
mkdir $@
|
|
|
|
|
2013-12-02 10:30:56 +01:00
|
|
|
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
|
|
|
|
|
2009-03-12 20:10:37 +01:00
|
|
|
### Include application makefiles
|
2009-07-03 00:36:04 +02:00
|
|
|
|
2009-03-12 20:10:37 +01:00
|
|
|
ifdef APPS
|
2013-03-17 23:24:03 +01:00
|
|
|
APPDS = ${wildcard ${foreach DIR, $(APPDIRS), ${addprefix $(DIR)/, $(APPS)}}} \
|
2013-07-30 23:07:55 +02:00
|
|
|
${wildcard ${addprefix $(CONTIKI)/apps/, $(APPS)} \
|
|
|
|
${addprefix $(CONTIKI)/platform/$(TARGET)/apps/, $(APPS)} \
|
|
|
|
$(APPS)}
|
2013-03-17 23:24:03 +01:00
|
|
|
APPINCLUDES = ${foreach APP, $(APPS), ${wildcard ${foreach DIR, $(APPDS), $(DIR)/Makefile.$(APP)}}}
|
2009-03-12 20:10:37 +01:00
|
|
|
-include $(APPINCLUDES)
|
|
|
|
APP_SOURCES = ${foreach APP, $(APPS), $($(APP)_src)}
|
|
|
|
DSC_SOURCES = ${foreach APP, $(APPS), $($(APP)_dsc)}
|
|
|
|
CONTIKI_SOURCEFILES += $(APP_SOURCES) $(DSC_SOURCES)
|
|
|
|
endif
|
|
|
|
|
2009-03-17 21:08:56 +01:00
|
|
|
### Include target makefile (TODO Unsafe?)
|
2009-07-03 00:36:04 +02:00
|
|
|
|
2012-02-17 17:51:56 +01:00
|
|
|
target_makefile := $(wildcard $(CONTIKI)/platform/$(TARGET)/Makefile.$(TARGET) ${foreach TDIR, $(TARGETDIRS), $(TDIR)/$(TARGET)/Makefile.$(TARGET)})
|
2009-03-17 21:08:56 +01:00
|
|
|
|
2011-03-10 20:59:21 +01:00
|
|
|
# Check if the target makefile exists, and create the object directory if necessary.
|
2009-03-17 21:08:56 +01:00
|
|
|
ifeq ($(strip $(target_makefile)),)
|
|
|
|
${error The target platform "$(TARGET)" does not exist (maybe it was misspelled?)}
|
|
|
|
else
|
2012-02-10 16:57:37 +01:00
|
|
|
ifneq (1, ${words $(target_makefile)})
|
|
|
|
${error More than one TARGET Makefile found: $(target_makefile)}
|
|
|
|
endif
|
|
|
|
include $(target_makefile)
|
2009-03-17 21:08:56 +01:00
|
|
|
endif
|
|
|
|
|
2013-11-22 09:46:11 +01:00
|
|
|
ifdef MODULES
|
2013-12-02 10:30:56 +01:00
|
|
|
UNIQUEMODULES = $(call uniq,$(MODULES))
|
|
|
|
MODULEDIRS = ${wildcard ${addprefix $(CONTIKI)/, $(UNIQUEMODULES)}}
|
2013-12-12 20:02:32 +01:00
|
|
|
MODULES_SOURCES = ${foreach d, $(MODULEDIRS), ${subst ${d}/,,${wildcard $(d)/*.c}}}
|
2013-11-22 09:46:11 +01:00
|
|
|
CONTIKI_SOURCEFILES += $(MODULES_SOURCES)
|
|
|
|
APPDS += $(MODULEDIRS)
|
|
|
|
endif
|
|
|
|
|
2013-07-29 20:34:07 +02:00
|
|
|
### Verbosity control. Use make V=1 to get verbose builds.
|
|
|
|
|
|
|
|
ifeq ($(V),1)
|
|
|
|
TRACE_CC =
|
|
|
|
TRACE_LD =
|
|
|
|
TRACE_AR =
|
|
|
|
TRACE_AS =
|
|
|
|
Q=
|
|
|
|
else
|
|
|
|
TRACE_CC = @echo " CC " $<
|
|
|
|
TRACE_LD = @echo " LD " $@
|
|
|
|
TRACE_AR = @echo " AR " $@
|
|
|
|
TRACE_AS = @echo " AS " $<
|
|
|
|
Q=@
|
|
|
|
endif
|
2013-03-17 23:24:03 +01:00
|
|
|
|
2007-12-21 11:16:45 +01:00
|
|
|
### Forward comma-separated list of arbitrary defines to the compiler
|
|
|
|
|
|
|
|
COMMA := ,
|
|
|
|
CFLAGS += ${addprefix -D,${subst $(COMMA), ,$(DEFINES)}}
|
|
|
|
|
2007-05-19 09:54:53 +02:00
|
|
|
### Setup directory search path for source and header files
|
2007-05-13 10:41:11 +02:00
|
|
|
|
2012-02-10 16:57:37 +01:00
|
|
|
CONTIKI_TARGET_DIRS_CONCAT = ${addprefix ${dir $(target_makefile)}, \
|
2007-05-13 10:41:11 +02:00
|
|
|
$(CONTIKI_TARGET_DIRS)}
|
|
|
|
CONTIKI_CPU_DIRS_CONCAT = ${addprefix $(CONTIKI_CPU)/, \
|
|
|
|
$(CONTIKI_CPU_DIRS)}
|
|
|
|
|
2009-02-11 10:03:52 +01:00
|
|
|
SOURCEDIRS = . $(PROJECTDIRS) $(CONTIKI_TARGET_DIRS_CONCAT) \
|
2013-03-17 23:24:03 +01:00
|
|
|
$(CONTIKI_CPU_DIRS_CONCAT) $(CONTIKIDIRS) $(APPDS) ${dir $(target_makefile)}
|
2007-05-13 10:41:11 +02:00
|
|
|
|
|
|
|
vpath %.c $(SOURCEDIRS)
|
|
|
|
vpath %.S $(SOURCEDIRS)
|
|
|
|
|
2013-11-28 14:54:07 +01:00
|
|
|
CFLAGS += ${addprefix -I,$(SOURCEDIRS) $(CONTIKI)}
|
2007-05-19 09:54:53 +02:00
|
|
|
|
2011-07-16 14:53:44 +02:00
|
|
|
### Check for a git repo and pass version if found
|
|
|
|
### git.exe in Windows cmd shells may require no stderr redirection
|
2014-10-14 10:00:28 +02:00
|
|
|
ifndef RELSTR
|
|
|
|
RELSTR:=${shell git --git-dir ${CONTIKI}/.git describe --tags --always}
|
|
|
|
endif
|
|
|
|
|
2011-07-16 14:53:44 +02:00
|
|
|
ifneq ($(RELSTR),)
|
|
|
|
CFLAGS += -DCONTIKI_VERSION_STRING=\"Contiki-$(RELSTR)\"
|
|
|
|
endif
|
|
|
|
|
2006-06-18 00:41:10 +02:00
|
|
|
### Automatic dependency generation
|
|
|
|
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
2007-04-14 20:37:06 +02:00
|
|
|
-include ${addprefix $(OBJECTDIR)/,$(CONTIKI_SOURCEFILES:.c=.d) \
|
2013-02-11 00:28:31 +01:00
|
|
|
$(PROJECT_SOURCEFILES:.c=.d)}
|
2006-06-18 00:41:10 +02:00
|
|
|
endif
|
|
|
|
|
2009-07-03 00:36:04 +02:00
|
|
|
### See http://make.paulandlesley.org/autodep.html#advanced
|
|
|
|
|
|
|
|
define FINALIZE_DEPENDENCY
|
|
|
|
cp $(@:.o=.d) $(@:.o=.$$$$); \
|
|
|
|
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
|
|
|
|
-e '/^$$/ d' -e 's/$$/ :/' < $(@:.o=.$$$$) >> $(@:.o=.d); \
|
|
|
|
rm -f $(@:.o=.$$$$)
|
|
|
|
endef
|
|
|
|
|
2013-06-20 19:20:50 +02:00
|
|
|
clean:
|
2013-11-13 21:15:46 +01:00
|
|
|
-rm -f *~ *core core *.srec \
|
2006-06-18 00:41:10 +02:00
|
|
|
*.lst *.map \
|
2013-02-11 00:28:31 +01:00
|
|
|
*.cprg *.bin *.data contiki*.a *.firmware core-labels.S *.ihex *.ini \
|
2013-06-20 19:20:50 +02:00
|
|
|
*.ce *.co
|
|
|
|
rm -rf $(CLEAN)
|
2006-06-18 00:41:10 +02:00
|
|
|
-rm -rf $(OBJECTDIR)
|
|
|
|
|
2013-07-26 17:57:14 +02:00
|
|
|
distclean: clean
|
2014-03-18 11:22:27 +01:00
|
|
|
-rm -f ${addsuffix .$(TARGET),$(CONTIKI_PROJECT)}
|
2013-07-26 17:57:14 +02:00
|
|
|
|
2013-12-09 14:56:45 +01:00
|
|
|
-include $(CONTIKI)/platform/$(TARGET)/Makefile.customrules-$(TARGET)
|
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef CUSTOM_RULE_C_TO_CE
|
2006-06-18 00:41:10 +02:00
|
|
|
%.ce: %.c
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_CC)
|
|
|
|
$(Q)$(CC) $(CFLAGS) -DAUTOSTART_ENABLE -c $< -o $@
|
2006-06-18 00:41:10 +02:00
|
|
|
$(STRIP) --strip-unneeded -g -x $@
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef CUSTOM_RULE_C_TO_OBJECTDIR_O
|
2013-06-21 00:45:41 +02:00
|
|
|
$(OBJECTDIR)/%.o: %.c | $(OBJECTDIR)
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_CC)
|
|
|
|
$(Q)$(CC) $(CFLAGS) -MMD -c $< -o $@
|
2009-07-03 00:36:04 +02:00
|
|
|
@$(FINALIZE_DEPENDENCY)
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2007-08-30 22:42:58 +02:00
|
|
|
ifndef CUSTOM_RULE_S_TO_OBJECTDIR_O
|
2013-06-21 00:45:41 +02:00
|
|
|
$(OBJECTDIR)/%.o: %.S | $(OBJECTDIR)
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_AS)
|
|
|
|
$(Q)$(AS) $(ASFLAGS) -o $@ $<
|
2007-08-30 22:42:58 +02:00
|
|
|
endif
|
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef CUSTOM_RULE_C_TO_O
|
2006-06-18 00:41:10 +02:00
|
|
|
%.o: %.c
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_CC)
|
|
|
|
$(Q)$(CC) $(CFLAGS) -c $< -o $@
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2013-07-29 20:34:07 +02:00
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef CUSTOM_RULE_C_TO_CO
|
2006-06-18 00:41:10 +02:00
|
|
|
%.co: %.c
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_CC)
|
|
|
|
$(Q)$(CC) $(CFLAGS) -DAUTOSTART_ENABLE -c $< -o $@
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef AROPTS
|
|
|
|
AROPTS = rcf
|
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef CUSTOM_RULE_ALLOBJS_TO_TARGETLIB
|
2006-12-31 14:54:24 +01:00
|
|
|
contiki-$(TARGET).a: $(CONTIKI_OBJECTFILES)
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_AR)
|
|
|
|
$(Q)$(AR) $(AROPTS) $@ $^
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2006-06-26 04:01:30 +02:00
|
|
|
ifndef LD
|
|
|
|
LD = $(CC)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef CUSTOM_RULE_LINK
|
2007-04-19 00:38:44 +02:00
|
|
|
%.$(TARGET): %.co $(PROJECT_OBJECTFILES) $(PROJECT_LIBRARIES) contiki-$(TARGET).a
|
2013-07-29 20:34:07 +02:00
|
|
|
$(TRACE_LD)
|
|
|
|
$(Q)$(LD) $(LDFLAGS) $(TARGET_STARTFILES) ${filter-out %.a,$^} \
|
|
|
|
${filter %.a,$^} $(TARGET_LIBFILES) -o $@
|
2006-06-26 04:01:30 +02:00
|
|
|
endif
|
2006-06-18 00:41:10 +02:00
|
|
|
|
2012-03-26 22:55:57 +02:00
|
|
|
%.ramprof: %.$(TARGET)
|
2012-07-11 01:02:59 +02:00
|
|
|
$(NM) -S -td --size-sort $< | grep -i " [abdrw] " | cut -d' ' -f2,4
|
2012-03-26 22:55:57 +02:00
|
|
|
|
|
|
|
%.flashprof: %.$(TARGET)
|
2012-07-11 01:02:59 +02:00
|
|
|
$(NM) -S -td --size-sort $< | grep -i " [t] " | cut -d' ' -f2,4
|
2012-03-26 22:55:57 +02:00
|
|
|
|
2007-04-18 23:28:28 +02:00
|
|
|
# Don't treat %.$(TARGET) as an intermediate file because it is
|
|
|
|
# in fact the primary target.
|
|
|
|
.PRECIOUS: %.$(TARGET)
|
|
|
|
|
|
|
|
# Cancel the predefined implict rule for compiling and linking
|
|
|
|
# a single C source into a binary to force GNU make to consider
|
|
|
|
# the match-anything rule below instead.
|
|
|
|
%: %.c
|
|
|
|
|
|
|
|
# Match-anything pattern rule to allow the project makefiles to
|
|
|
|
# abstract from the actual binary name. It needs to contain some
|
|
|
|
# command in order to be a rule, not just a prerequisite.
|
2006-06-18 00:41:10 +02:00
|
|
|
%: %.$(TARGET)
|
|
|
|
@
|