Reusable Makefile components for everyday use.

Lars Kruse d2dd19dbab Bump version: 0.2.7 -> 0.2.8 6 years ago
debian c862a8e663 Bump version: 0.2.7 -> 0.2.8 6 years ago
include 28e6bd3f7f remove "deb-lintian" warning if build directory is missing 6 years ago
.bumpversion.cfg c862a8e663 Bump version: 0.2.7 -> 0.2.8 6 years ago
.gitignore cb416663da fix deb packaging style issues 7 years ago
CONTRIBUTING.md 4afc8de3e3 fixed formatting in CONTRIBUTING 6 years ago
COPYING 3768846d10 add clear reference to GPLv3 or later 7 years ago
Changelog 8cfd806fef Update changelog 6 years ago
INTEGRATION.md 2a2f7fdf18 update documentation 7 years ago
Makefile bc0cea0f6f add 'build' and 'install' targets for makefilet itself 7 years ago
README.md 1a153eca85 README: fix ondemand-integration for empty/missing Makefile 6 years ago
USAGE.md c1a0ef0b36 remove hard-coded pybuild-overrides for intelhex and marshmallow 6 years ago
VERSION c862a8e663 Bump version: 0.2.7 -> 0.2.8 6 years ago
main.mk ef61d4ce0a fixed recently introduced 'clean' operation 6 years ago
makefilet-download-ondemand.mk c862a8e663 Bump version: 0.2.7 -> 0.2.8 6 years ago

README.md

Makefilet

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.

Features

Currently supported tasks include:

Integrate makefilet into your project

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
[ -s Makefile ] || echo >>Makefile
sed -i 1i'include makefilet-download-ondemand.mk' Makefile

See the integration instructions for more details and a few alternative approaches.

Start using makefilet's features

Take a look at list of new available targets provided by makefilet:

make help

Take a look at the usage instructions for more details.

Contribute

Please take a look at the contribution hints.