imoisey / makebuilder
Builder for Makefile
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/imoisey/makebuilder
Requires
- php: >=7.2
This package is auto-updated.
Last update: 2025-09-11 16:51:19 UTC
README
Makebuilder is an easy library for building Makefile.
Installation
composer require imoisey/makebuilder
Usage
use Imoisey\Makebuilder\MakeBuilder; $makeBuilder = new MakeBuilder(); $makeBuilder->createTarget('install', function ($target) { $target->addCommand('@echo --- Install ---'); }); $makeBuilder->build('Makefile');
Makefile:
install:
@echo --- Install ---