summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2008-06-22 20:19:35 -0700
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-23 08:14:49 -0600
commit8319f2f326f74a93b51eb3db1e9f619a2a74e14e (patch)
tree3e7f1db897abdb3801c306409597cd46719688c3 /src/Makefile
parent464c585681a647542e4ae8188dc2883c0c8a142e (diff)
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.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f93987e688..fab0069a71 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: