Skip to content

repejota/makefile-help-task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

makefile-help-task

License CircleCI

A generic Makefile help task.

It provides self-documenting Makefile task that shows tasks available with a description for each one. Like a --help flag on CLI tools.

It also sets this new help task as a default one.

Example:

$ cat Makefile
include Makefile.help.mk

install:  ## Install app
    ./configure
    make
    make install

$ make
install:  Install app
help:  Show this help ( default )

How to use

Just include the Makefile.help.mk file in your Makefile like in the example above.

Requirements

License

Copyright 2018 Raül Pérez, [email protected]

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.