diff mx/mx_graal.py @ 21488:6420ac0cbe3c

Add Makefile generator for building graal without mx
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 26 May 2015 14:46:32 +0200
parents 2fe8729dd813
children 28cbfacd0518 ca14581fadc4 fc376e0b80ba
line wrap: on
line diff
--- a/mx/mx_graal.py	Fri May 22 11:52:28 2015 +0200
+++ b/mx/mx_graal.py	Tue May 26 14:46:32 2015 +0200
@@ -37,6 +37,7 @@
 import itertools
 import json, textwrap
 import fnmatch
+import mx_graal_makefile
 
 # This works because when mx loads this file, it makes sure __file__ gets an absolute path
 _graal_home = dirname(dirname(__file__))
@@ -2656,6 +2657,7 @@
         'longtests' : [longtests, ''],
         'sl' : [sl, '[SL args|@VM options]'],
         'jol' : [jol, ''],
+        'makefile' : [mx_graal_makefile.build_makefile, 'build makefiles for JDK build'],
     }
 
     mx.add_argument('--jacoco', help='instruments com.oracle.* classes using JaCoCo', default='off', choices=['off', 'on', 'append'])