mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
14 lines
385 B
Python
14 lines
385 B
Python
"""
|
|
Implicit variables; perhaps in the future this will also include some implicit
|
|
rules, at least match-anything cancellation rules.
|
|
"""
|
|
|
|
variables = {
|
|
'MKDIR': '%pymake.builtins mkdir',
|
|
'RM': '%pymake.builtins rm -f',
|
|
'SLEEP': '%pymake.builtins sleep',
|
|
'TOUCH': '%pymake.builtins touch',
|
|
'.LIBPATTERNS': 'lib%.so lib%.a',
|
|
'.PYMAKE': '1',
|
|
}
|
|
|