/mini-make

A miniature version of Make to run on all systems.

Primary LanguageCGNU General Public License v3.0GPL-3.0

Mini Make

Build Status Build status

Mini Make is an implementation of Make that runs on Windows and Linux.

It is made to run Makefiles generated by CMake, and with a few other features from GNU Make.

Building

CMake is the primary build tool.

To build the project with CMake, do this:

mkdir build
cd build
cmake ../.. -DCMAKE_BUILD_TYPE=Release
cmake --build . --target all
cmake --build . --target install