Demos = 1 2 3 4 5

all : parents local  check

parents :
	cd .. && make local

local : hello files 

hello :
	@echo "making bars/eg"

files : $(Demos)
	@chmod +x $(Demos)

check :
	ddd