diff --git a/aedi/target/__init__.py b/aedi/target/__init__.py index fcf24be6..ab120e21 100644 --- a/aedi/target/__init__.py +++ b/aedi/target/__init__.py @@ -21,7 +21,8 @@ from .library_tier2 import * from .library_tier3 import * from .main import * from .special import * -from .tools import * +from .tool_tier1 import * +from .tool_tier2 import * def targets(): diff --git a/aedi/target/tools.py b/aedi/target/tool_tier1.py similarity index 100% rename from aedi/target/tools.py rename to aedi/target/tool_tier1.py diff --git a/aedi/target/tool_tier2.py b/aedi/target/tool_tier2.py new file mode 100644 index 00000000..2b91f62d --- /dev/null +++ b/aedi/target/tool_tier2.py @@ -0,0 +1,17 @@ +# +# Helper module to build macOS version of various source ports +# Copyright (C) 2020-2022 Alexey Lysiuk +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#