nitc :: MPackage :: has_makefile
self
have a Makefile?
# Does `self` have a Makefile?
fun has_makefile: Bool do
var makefile_path = self.makefile_path
if makefile_path == null then return false
return makefile_path.file_exists
end
src/nitpackage.nit:321,2--326,4