From: Dan Nicholson Date: Mon, 23 Jun 2008 03:19:35 +0000 (-0700) Subject: Create $(TOP)/$(LIB_DIR) for install, too X-Git-Tag: 062012170305~18456 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ec5e6a0320639920fcf325895acb57fb3dad5c7;p=profile%2Fivi%2Fmesa.git Create $(TOP)/$(LIB_DIR) for install, too If `make install' is run without running `make' first, the $(LIB_DIR) will not be created. This also changes the mkdir a little bit so that it isn't run if necessary and added `-p' so that it is immune to races. --- diff --git a/src/Makefile b/src/Makefile index 229beea..4f65da0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -21,7 +21,7 @@ subdirs: fi \ done -install: +install: $(TOP)/$(LIB_DIR) @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE) install) || exit 1 ; \ @@ -29,7 +29,7 @@ install: done $(TOP)/$(LIB_DIR): - -mkdir $(TOP)/$(LIB_DIR) + -@test -d $(TOP)/$(LIB_DIR) || mkdir -p $(TOP)/$(LIB_DIR) clean: