1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#-*-Makefile-*- vim:syntax=make
#$Id: Makedefaults,v 1.8 2008-06-18 20:22:51 razvanm Exp $
DEFAULT_LOCAL_GROUP ?= 0x22
OPTFLAGS ?= -Os
NESC_FLAGS ?= -Wnesc-all
GOALS += ident_flags tos_image tosboot
define DEFAULT_HELP
Welcome to the TinyOS make system!
You must specify one of the valid targets and possibly some combination of
the extra options. Many targets have custom extras and extended help, so be
sure to try "make <target> help" to learn of all the available features.
Global extras:
docs : compile additional nescdoc documentation
tinysec : compile with TinySec secure communication
endef
HELP += $(DEFAULT_HELP)
|