The path to self Makefile

Property definitions

nitc :: nitpackage $ MPackage :: makefile_path
	# 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