Reusable Makefile components for everyday use.

Konrad Mohrfeldt 1505650124 fix: check if package.json is actually tracking version data 1 tahun lalu
debian 7483e88416 Bump version: 0.13.0 -> 0.14.0 1 tahun lalu
include 1505650124 fix: check if package.json is actually tracking version data 1 tahun lalu
.bumpversion.cfg 7483e88416 Bump version: 0.13.0 -> 0.14.0 1 tahun lalu
.gitignore cb416663da fix deb packaging style issues 7 tahun lalu
CONTRIBUTING.md d84fe0eb3d Fix typo 5 tahun lalu
COPYING 3768846d10 add clear reference to GPLv3 or later 7 tahun lalu
Changelog abd1aeaac2 feat: introduce deprecation hints and deprecate 'DISABLE_CUSTOM_VIRTUALENV' 1 tahun lalu
FAQ.md cfa1a43848 docs: improve formatting of FAQ 2 tahun lalu
INTEGRATION.md 88c8efe835 build: change default branch from `master` to `main` 2 tahun lalu
Makefile 68fd965cb9 Allow optional arguments for lintian 5 tahun lalu
README.md 76ff4802e2 docs: add documentation for all targets and variables 2 tahun lalu
REFERENCE.md abd1aeaac2 feat: introduce deprecation hints and deprecate 'DISABLE_CUSTOM_VIRTUALENV' 1 tahun lalu
USAGE.md 5a39e297c7 deb: remove "test-deb" 4 tahun lalu
VERSION 7483e88416 Bump version: 0.13.0 -> 0.14.0 1 tahun lalu
main.mk abd1aeaac2 feat: introduce deprecation hints and deprecate 'DISABLE_CUSTOM_VIRTUALENV' 1 tahun lalu
makefilet-download-ondemand.mk 7483e88416 Bump version: 0.13.0 -> 0.14.0 1 tahun lalu

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.

See the reference for a full list of all available targets and variables.

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/main/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 the list of new available targets provided by makefilet:

make help

Take a look at the usage instructions for more details.

Frequently asked questions

See FAQ.

Contribute

Please take a look at the contribution hints.