Home | Trees | Index | Help |
|
---|
Package yagdoc :: Module makefile :: Class Makefile |
|
object
--+
|
Makefile
Method Summary | |
---|---|
__init__(self)
| |
str , list of str
|
Expand Makefile variables in a string. |
str
|
Get a single Makefile variable. |
Read variable assignments from a Makefile. | |
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
Method Details |
---|
expand(self, text)Expand Makefile variables in a string. Undefined variables are expanded to empty text, as make would expand them. The second return value, list of unexpanded names, can contain for instance GNU make functions. The items are only the names, the second item returned for:HEADERS = $(wildcard *.h)will be just ['wildcard'] .
|
get(self, name, expand=True)Get a single Makefile variable. Undefined variables are expanded to empty text, as make would expand them. If you want to check potential problems, use:makefile.expand('$(%s)' % name)instead of this method as it also returns the list of variable-like constructs remaining in the text.
|
scan(self, source=None)Read variable assignments from a Makefile.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Fri Oct 5 00:36:53 2007 | http://epydoc.sf.net |