Merge branch 'master' of github.com:glenux/makefiles-forever

This commit is contained in:
Glenn Y. Rolland 2021-07-15 14:21:11 +02:00
commit 685f1dd11a

View file

@ -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 ## Description
@ -11,13 +11,16 @@ A collection of makefiles for every imaginable use
## Usage ## Usage
* Add this repository as a GIT submodule of your project * Add this repository as a GIT submodule of your project
```
git submodule add https://github.com/glenux/makefiles-forever .makefiles
```
* Include needed features in the end of your makefile
```
# [...]
git submodule add -include .makefiles/featureA.mk
-include .makefiles/featureB.mk
* Include needed features in your makefile ```
-include path/to/makefiles-forever/feature.mk
## Good practices ## Good practices
* Keep task parallelism in mind * Keep task parallelism in mind