dependencies now sorted alphabetically in build script

This commit is contained in:
Bryan Herman 2013-08-15 11:21:23 -04:00
parent 466423c5f0
commit 2b8e57b42d

View file

@ -20,7 +20,7 @@ for src in glob.iglob('*.F90'):
dependencies[module] = sorted(list(deps))
for module in dependencies.keys():
for module in sorted(dependencies.keys()):
for dep in dependencies[module]:
print("{0}.o: {1}.o".format(module, dep))
print('')