diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ad7ecc9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +charset = utf-8 + +[Makefile] +indent_style = tab +indent_size = 8 +trim_trailing_whitespace = false +insert_final_newline = false diff --git a/Makefile b/01-Variable_MAKEFILE_LIST/Makefile similarity index 81% rename from Makefile rename to 01-Variable_MAKEFILE_LIST/Makefile index b53e7e6..edab81e 100644 --- a/Makefile +++ b/01-Variable_MAKEFILE_LIST/Makefile @@ -1,9 +1,11 @@ - makedir := $(abspath $(lastword $(MAKEFILE_LIST))) $(warning makedir1=$(makedir)) include dir1/Makefile + makedir := $(abspath $(lastword $(MAKEFILE_LIST))) $(warning makedir3=$(makedir)) +all: + @echo "Completing the main Makefile" diff --git a/dir1/Makefile b/01-Variable_MAKEFILE_LIST/dir1/Makefile similarity index 100% rename from dir1/Makefile rename to 01-Variable_MAKEFILE_LIST/dir1/Makefile