master > master: code - makefiles korrigiert + unittest

This commit is contained in:
RD
2022-04-18 19:03:01 +02:00
parent d5a79e77ce
commit dc831a91c7
2 changed files with 14 additions and 12 deletions

View File

@@ -19,12 +19,12 @@ endif
# Macros
################################
define create_folder_if_not_exists
@if ! [ -d "$(1)" ]; then mkdir "$(1)"; fi
define create_file_if_not_exists
@touch "$(1)";
endef
define create_folder_if_not_exists
@touch "$(1)";
@if ! [ -d "$(1)" ]; then mkdir "$(1)"; fi
endef
define delete_if_file_exists