bug 833164 - consolodate the various makeDepend things in the tree r=ted

This commit is contained in:
Trevor Saunders
2013-02-14 07:06:16 -05:00
parent 64ade930e8
commit aa2dac5b9f
5 changed files with 39 additions and 80 deletions

View File

@@ -0,0 +1,21 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
dependencies = []
targets = []
def makeQuote(filename):
return filename.replace(' ', '\\ ') # enjoy!
def writeMakeDependOutput(filename):
print "Creating makedepend file", filename
with open(filename, 'w') as f:
if len(targets) > 0:
f.write("%s:" % makeQuote(targets[0]))
for filename in dependencies:
f.write(' \\\n\t\t%s' % makeQuote(filename))
f.write('\n\n')
for filename in targets[1:]:
f.write('%s: %s\n' % (makeQuote(filename), makeQuote(targets[0])))