move make.mk and rules.mk to build_system/make

This commit is contained in:
hathach
2023-11-23 20:19:14 +07:00
parent 7213b8abb1
commit 26ca48e7a7
34 changed files with 65 additions and 65 deletions

View File

@@ -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()