summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-11-23 20:19:14 +0700
committerhathach <[email protected]>2023-11-23 20:20:01 +0700
commit26ca48e7a7a93f8b7f13a209745080855a7bc4fe (patch)
tree9d8fd2ccb4631b3166c3078826c25ded3f4d909e /tools
parent7213b8abb126cb6a1c88bd1e6d89b7dbacf339d8 (diff)
move make.mk and rules.mk to build_system/make
Diffstat (limited to 'tools')
-rw-r--r--tools/build_make.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_make.py b/tools/build_make.py
index cd9884313..f79a452e4 100644
--- a/tools/build_make.py
+++ b/tools/build_make.py
@@ -43,9 +43,9 @@ if __name__ == '__main__':
# If examples are not specified in arguments, build all
all_examples = []
for d in os.scandir("examples"):
- if d.is_dir() and 'cmake' not in d.name:
+ if d.is_dir() and 'cmake' not in d.name and 'build_system' not in d.name:
for entry in os.scandir(d.path):
- if entry.is_dir() and 'cmake' not in entry.name and entry.name != 'build_system':
+ if entry.is_dir() and 'cmake' not in entry.name:
all_examples.append(d.name + '/' + entry.name)
filter_with_input(all_examples)
all_examples.sort()