I\'m a very new to makefiles and i want to create directories using makefile. My project directory is like this
+--Project +--output +--source
Or, KISS.
DIRS=build build/bins ... $(shell mkdir -p $(DIRS))
This will create all the directories after the Makefile is parsed.