Merge branch 'master' of github.com:glenux/makefiles-forever
This commit is contained in:
commit
685f1dd11a
1 changed files with 11 additions and 8 deletions
19
README.md
19
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
|
## 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
|
||||||
|
|
Loading…
Reference in a new issue