The Contiki 2.x build system allows to define arbitrary macros for the C compiler preprocessor (in other word add -d<macro[=value]>'s to the C compiler command line) directly from the gnumake command line by setting the gnumake variable DEFINES to a comma-seperated list of macros (and optionally values) like this:

make TARGET=mytarget DEFINES=MYLOG, MYSIZE=100, MYTRACE

The build system does however _NOT_ take care to rebuild things if the DEFINES change so most likely a 'make clean' is advisable. To ease usage the DEFINES may be saved individually per target with the goal 'savedefines' similiar to savinf the target.

The 6502-based target leverage the DEFINES mechanism by introducing so-called 'high level config macros' which allow to configure Contiki per target AND per project.

Most of the time there's exactly one reasonable set of high level config macros for every combination of target and project. Therefore it makes sense to place them into CVS.
This commit is contained in:
oliverschmidt 2008-05-26 09:28:28 +00:00
parent 8248685dcf
commit 1cab294517
11 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST

View File

@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS

View File

@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST

View File

@ -0,0 +1 @@
DEFINES = WITH_LOGGING,WITH_BOOST