From 6e594f4fa7a9520a88199ace7929427ef3900572 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Thu, 15 Jul 2021 00:39:47 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7bac89a..489ad61 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ A collection of makefiles for every imaginable use ## Usage * Add this repository as a GIT submodule of your project - - git submodule add - + ``` + git submodule add + ``` * Include needed features in your makefile - - -include path/to/makefiles-forever/feature.mk - + ``` + -include path/to/makefiles-forever/feature.mk + ``` ## Good practices * Keep task parallelism in mind From 4ebbdf14cc18138e9e3a49940cd7d8958c18cf81 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Thu, 15 Jul 2021 00:40:50 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 489ad61..bde434a 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,13 @@ A collection of makefiles for every imaginable use * Add this repository as a GIT submodule of your project ``` - git submodule add + git submodule add https://github.com/glenux/makefiles-forever .makefiles ``` * Include needed features in your makefile ``` - -include path/to/makefiles-forever/feature.mk + -include .makefiles/featureA.mk + -include .makefiles/featureB.mk + # ... ``` ## Good practices From 37bbb9290986a20857b07afbd21fda7c90134e73 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Thu, 15 Jul 2021 00:41:52 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bde434a..d600796 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,12 @@ A collection of makefiles for every imaginable use ``` git submodule add https://github.com/glenux/makefiles-forever .makefiles ``` -* Include needed features in your makefile +* Include needed features in the end of your makefile ``` + # [...] + -include .makefiles/featureA.mk - -include .makefiles/featureB.mk - # ... + -include .makefiles/featureB.mk ``` ## Good practices From 812a7e6175396b0247a4a89b8399e705eb52725f Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Thu, 15 Jul 2021 00:43:29 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d600796..d2a0386 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Makefiles forever +# Makefiles Forever -A collection of makefiles for every imaginable use +A drop-in collection of makefiles libraries for your projects ## Description