diff options
Diffstat (limited to 'o3d/gypbuild.py')
-rwxr-xr-x | o3d/gypbuild.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/o3d/gypbuild.py b/o3d/gypbuild.py index 86ff0cd..785e187 100755 --- a/o3d/gypbuild.py +++ b/o3d/gypbuild.py @@ -181,20 +181,16 @@ class GypBuilder(object): def GetSolutionPath(self): """Gets the solution path.""" - return '%s_main.scons' % GypBuilder.base_name + return '%s.Makefile' % GypBuilder.base_name def CleanTargets(self, targets, options): """Cleans the targets.""" - solution = self.GetSolutionPath() - self.Execute(['hammer', - '-f', solution, - '--clean']) + print "clean not implemented for this platform." def Dobuild(self, targets, options): """Builds the specifed targets.""" solution = self.GetSolutionPath() - self.Execute(['hammer', - '-f', solution]) + self.Execute(['make', '-f', solution]) # Use "o3d" for chrome only build? base_name = "o3d_all" |