Gradle Plugins

Maintained by aalmiray

Summary

This is plugin for calling GNU Make from Gradle.
it's mian focus is for the migration of legacy builds

Website https://github.com/ysb33r/Gradle/tree/master/gnumake
Author Schalk W. Cronjé
Version 0.1

Usage

import org.ysb33r.gradle.gnumake.GnuMakeBuild

buildscript {
  repositories {
    jcenter()
  }
  dependencies {
    classpath 'org.ysb33r.gradle:gnumake:0.1'
  }
}

task runMake (type:GnuMakeBuild) {
  targets = ['build','install']
  flags = [ DESTDIR : '/copy/files/here', BUILD_NUMBER : 12345 ]
}