# Builds all the projects in the solution...
.PHONY: all_projects
all_projects: DrDestructo2 

# Builds project 'DrDestructo2'...
.PHONY: DrDestructo2
DrDestructo2: 
	make --directory=DrDestructo2/ --file=DrDestructo2.makefile

# Cleans all projects...
.PHONY: clean
clean:
	make --directory=DrDestructo2/ --file=DrDestructo2.makefile clean

