6 lines
227 B
Makefile
6 lines
227 B
Makefile
# Find the local dir of the make file
|
|
GET_LOCAL_DIR = $(patsubst %/,%,$(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))))
|
|
|
|
# makes sure the target dir exists
|
|
MKDIR = if [ ! -d $(dir $@) ]; then mkdir -p $(dir $@); fi
|