GithubHelp home page GithubHelp logo

genmake's Introduction

Genmake

A simple makefile generator for C/C++/Assembly Projects of all shapes and sizes

#How does it work Simply download the genmake.py script, put it on your project root folder, and execute it with python:

python genmake.py
  • It will ask for the output executable filename (including extension), and will also ask for optional paths, such as build paths (where .o files will go), the root source file directory and the executable's path.

  • Secondly, it will recursively scan the root path you provided (or not) of the location of your source files, and will create subdir.mk files next to them, finally, it'll generate a makefile.mak file which will link all object files into one.

  • After the generation is done, simply type:

make -f makefile.mak all

#Special Features This script has a very special feature, which allows the programmer to inject options into the makefile.mak or subdir.mk right from the source code. For example, imagine you want to compile foo.c differently from all other files. For this, you'd write this block of comment into your source code:

// $FLAGS(-O2 -Wall -std=c++11) 

What's more, you can also inject dependencies, as such:

// $DEPS(bar, baz) Where 'bar' and 'baz' are object files which exist/will exist on the build path  

Finally, it is also possible to inject misc configurations, for whatever reason:

// $INJ(@echo "I injected this into the makefile and this will be run AFTER the compilation")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.