Reusable Makefile components for everyday use.
Lars Kruse 1d9243623e Bump version: 0.2.3 -> 0.2.4 | 7 years ago | |
---|---|---|
debian | 7 years ago | |
include | 7 years ago | |
.bumpversion.cfg | 7 years ago | |
.gitignore | 7 years ago | |
COPYING | 7 years ago | |
Changelog | 7 years ago | |
INTEGRATION.md | 7 years ago | |
Makefile | 7 years ago | |
README.md | 7 years ago | |
USAGE.md | 7 years ago | |
VERSION | 7 years ago | |
main.mk | 7 years ago | |
makefilet-download-ondemand.mk | 7 years ago |
Reusable Makefile components for everyday use.
makefilet
provides a set of Make targets for common development tasks. It simplifies your life and the life of your co-developers by letting you focus on your language and your project instead of clumsily writing Makefile
snippets.
Most features are working out of the box. Some features require a configuration file (e.g. for tox) or a variable in your Makefile
.
In a perfect world, the Makefile
of your project is reduced to just a single line that is responsible for including makefilet
. The latter is providing all the magic for you. Discover it via make help
.
Currently supported tasks include:
Somehow you need to make makefilet
available for yourself and your co-developers within your project repository.
Probably the following lines are everything you need:
wget https://notabug.org/sumpfralle/makefilet/raw/master/makefilet-download-ondemand.mk
touch Makefile
sed -i 1i'include makefilet-download-ondemand.mk' Makefile
See the integration instructions for more details and a few alternative approaches.
Take a look at list of new available targets provided by makefilet:
make help
Take a look at the usage instructions for more details.