MakeMake: Generate make files from C source code

MakeMake is a tool for generating and running make files from C code. It parses the .c and .h files in the same directory as the starting file and determines recursively what files are required to build the project. The tool can be built on Unix platforms using the shell script MakeMakeMake, which not only builds MakeMake but also runs it with the same parameters. MakeMake can be run using the command format “makemake “. Options can be passed through the command line or as pragmas in the .c and .h files. MakeMake has been tested on Linux, MacOS, and Windows, with plans to support Android and iOS. Overall, MakeMake was designed to simplify the process of building portable C programs without the need for maintaining up-to-date make files.

https://github.com/quelsolaar/makemake

To top