An open API service indexing awesome lists of open source software.

https://github.com/omaraflak/gmake2

Makefile generator v2.
https://github.com/omaraflak/gmake2

gmake makefile

Last synced: over 1 year ago
JSON representation

Makefile generator v2.

Awesome Lists containing this project

README

          

# gmake

`gmake` is a simple way to generate multiple makefiles for your projects.

# Use

Create a **.gmake** file at the root of your project or use `gmake init` to generate a template.
Different variables are available :

* compiler
* flags
* libs
* output

Inside this file you should also write down the folders where submakefiles should be generated.

Once done, simply run `gmake`.

# Example

```
compiler = g++-8
flags = -std=c++17
libs = -lstdc++fs
gmake.cpp = gmake
output = bin
./root
```