am a45c2e58: Merge "Add two useful character constants." into lmp-dev

* commit 'a45c2e5834ae6ff983e158c79f4fd65e09cdb766':
  Add two useful character constants.
This commit is contained in:
Ying Wang 2014-10-03 21:32:19 +00:00 committed by Android Git Automerger
commit 16d99e8d10
1 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,14 @@ endif
empty :=
space := $(empty) $(empty)
comma := ,
# Note that make will eat the newline just before endef.
define newline
endef
# Unfortunately you can't simply define backslash as \ or \\.
backslash := \a
backslash := $(patsubst %a,%,$(backslash))
# Tell python not to spam the source tree with .pyc files. This
# only has an effect on python 2.6 and above.