]> git.llucax.com Git - software/makeit.git/commitdiff
Fix source tree replication in build directory
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 2 Oct 2009 18:09:40 +0000 (15:09 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Tue, 6 Oct 2009 17:53:48 +0000 (14:53 -0300)
Sub-projects build directories were not excluded from the replication. Git
directories were not excluded either, resulting in a long time spent
creating unused directories.

Makeit.mak

index a4b6dfbfb5f8dd1bcf4005902055b03b652fb653..a687ccd90caa665b4d11bb0bc0c2db1fcabf6162 100644 (file)
@@ -66,6 +66,12 @@ SPHINX_FORMAT ?= html
 # Paper size for Sphinx LaTeX output (a4, letter, etc.)
 SPHINX_PAPERSIZE ?= a4
 
+# Name of the build directory (to use when excluding some paths)
+BUILD_DIR_NAME ?= build
+
+# Directories to exclude from the build directory tree replication
+BUILD_DIR_EXCLUDE ?= $(BUILD_DIR_NAME) .git .hg .bzr _darcs .svn CVS
+
 
 # Directories
 ##############
@@ -85,7 +91,7 @@ T := $(abspath $T)
 R := $(subst $T,,$(patsubst $T/%,%,$(CURDIR)))
 
 # Base directory where to put variants (Variants Directory)
-VD ?= $T/build
+VD ?= $T/$(BUILD_DIR_NAME)
 
 # Generated files top directory
 G ?= $(VD)/$F
@@ -445,9 +451,9 @@ test: $$(test)
 #       subdirectories, that's why the current directory "." is included, so it
 #       won't show an error message in case of no subdirectories.
 setup_build_dir__ := $(shell \
-       mkdir -p $O $B $L $D $(INCLUDE_DIR)\
-       mkdir -p . $(addprefix $O,$(patsubst $T%,%,\
-                       $(shell find $T -type d -not -path '$(VD)*'))); \
+       mkdir -p $O $B $L $D $(INCLUDE_DIR) $(addprefix $O,$(patsubst $T%,%,\
+               $(shell find $T -type d $(foreach d,$(BUILD_DIR_EXCLUDE), \
+                               -not -path '*/$d' -not -path '*/$d/*')))); \
        test -L $(VD)/last || ln -s $F $(VD)/last )