Example #1
0
	def make_install(self, project_dict):
		wfile.wmakefile(project_dict)
		cmd.do("make install")
		return
Example #2
0
	def make_clean(self, project_dict):
		wfile.wmakefile(project_dict)
		cmd.do("make clean")
		return
Example #3
0
	def make(self, project_dict):
		wfile.wmakefile(project_dict)
		cmd.do("make all")
		return
Example #4
0
	def make_others(self, project_dict):
		wfile.wmakefile(project_dict)
		cmd.do("make others " + "prjs=\"" + self.build_args['-x'] + "\"")
		return