Does self have a Makefile?

Property definitions

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