Makefileadaption for proper status output + interpreter reduction

This commit is contained in:
Dirk Alders 2023-06-08 08:22:32 +02:00
부모 c47c20e0d6
커밋 aef99580e1
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -37,7 +37,7 @@ except ImportError:
logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
__INTERPRETER__ = (2, 3)
__INTERPRETER__ = (3, )
"""The supported Interpreter-Versions"""
__DESCRIPTION__ = """This Module helps implementing state machines."""
"""The Module description"""

파일 보기

@ -8,5 +8,5 @@ all: $(LOGFILES)
python3 $< > $@
clean:
@echo "\e[1m * Example logs...\e[0m"
@echo -e "\e[1m * Example logs...\e[0m"
@rm -f $(LOGFILES)