nitc :: MPackage :: makefile_path
self
Makefile
# The path to `self` Makefile
fun makefile_path: nullable String do
var path = package_path
if path == null then return null
if not is_expanded then return null
return path / "Makefile"
end
src/nitpackage.nit:313,2--319,4