diff options
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r-- | win32/DepGen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py index f2cbb4838..cd38367c3 100644 --- a/win32/DepGen.py +++ b/win32/DepGen.py @@ -19,6 +19,9 @@ def Generate(): # Create the dependencies file for g++ deps = Dependencies.FindDependencies(["../win32/*.cxx"] + sources, ["../win32"] + includes, ".o", "../win32/") + # Place the objects in $(DIR_O) + deps = [["$(DIR_O)/"+obj, headers] for obj, headers in deps] + Dependencies.UpdateDependencies("../win32/deps.mak", deps, topComment) # Create the dependencies file for MSVC |