aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/DepGen.py
diff options
context:
space:
mode:
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r--win32/DepGen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py
index 563cae2a1..72ae027a5 100644
--- a/win32/DepGen.py
+++ b/win32/DepGen.py
@@ -13,8 +13,8 @@ from scripts import Dependencies
topComment = "# Created by DepGen.py. To recreate, run DepGen.py.\n"
def Generate():
- sources = ["../src/*.cxx", "../lexlib/*.cxx", "../lexers/*.cxx"]
- includes = ["../include", "../src", "../lexlib"]
+ sources = ["../src/*.cxx"]
+ includes = ["../include", "../src"]
# Create the dependencies file for g++
deps = Dependencies.FindDependencies(["../win32/*.cxx"] + sources, ["../win32"] + includes, ".o", "../win32/")