ncannasse 7 years ago
parent
commit
6ac965621b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      libs/bullet/Makefile
  2. 1 1
      libs/bullet/bullet/Generator.hx

+ 1 - 1
libs/bullet/Makefile

@@ -3,7 +3,7 @@ SOURCES := haxe -lib webidl -main bullet.Generator --interp
 all:
 
 generate:
-	haxe -lib webidl --macro "bullet.Generator.generate()"
+	haxe -lib webidl --macro "bullet.Generator.buildHL()"
 
 genjs:
 	haxe -lib webidl --macro "bullet.Generator.buildJS()"

+ 1 - 1
libs/bullet/bullet/Generator.hx

@@ -23,7 +23,7 @@ class Generator {
 
 	static var options = { idl : "bullet.idl", libName : "bullet", includeCode : INCLUDE, autoGC : true };
 
-	public static function generateHL() {
+	public static function buildHL() {
 		webidl.HLGen.generate(options);
 	}