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.
- Host: GitHub
- URL: https://github.com/omaraflak/gmake2
- Owner: omaraflak
- Created: 2018-08-06T08:58:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-08T09:26:35.000Z (almost 8 years ago)
- Last Synced: 2025-02-12T03:20:03.149Z (over 1 year ago)
- Topics: gmake, makefile
- Language: C++
- Size: 28.3 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```