Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2006-11-17 21:29:46 +0300
committerKent Mein <mein@cs.umn.edu>2006-11-17 21:29:46 +0300
commit35d3781757ab35cd6cfb24038c4248a815b3ee0c (patch)
tree9727e736fc28140ad970bc16f56bb20cf08d4abe /source/nan_compile.mk
parent28769382d2bd372d984a03103b66a687c38d8c2d (diff)
This reverts the dependancy stuff I did for make -j#
It was causing all of blender to be rebuilt every single time. Need to do more to figure it out before we add this back in. Kent
Diffstat (limited to 'source/nan_compile.mk')
-rw-r--r--source/nan_compile.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/nan_compile.mk b/source/nan_compile.mk
index 9463f357175..d356d13be42 100644
--- a/source/nan_compile.mk
+++ b/source/nan_compile.mk
@@ -255,7 +255,7 @@ include nan_warn.mk
default: all
-$(DIR)/$(DEBUG_DIR)%.o: %.c makedir
+$(DIR)/$(DEBUG_DIR)%.o: %.c
ifdef NAN_DEPEND
@set -e; $(CC) -M $(CPPFLAGS) $< 2>/dev/null \
| sed 's@\($*\)\.o[ :]*@$(DIR)/$(DEBUG_DIR)\1.o : @g' \
@@ -269,7 +269,7 @@ $(DIR)/$(DEBUG_DIR)%.o: %.c makedir
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
endif
-$(DIR)/$(DEBUG_DIR)%.o: %.cpp makedir
+$(DIR)/$(DEBUG_DIR)%.o: %.cpp
ifdef NAN_DEPEND
@set -e; $(CCC) -M $(CPPFLAGS) $< 2>/dev/null \
| sed 's@\($*\)\.o[ :]*@$(DIR)/$(DEBUG_DIR)\1.o : @g' \
@@ -283,21 +283,21 @@ $(DIR)/$(DEBUG_DIR)%.o: %.cpp makedir
$(CCC) -c $(CCFLAGS) $(CPPFLAGS) $< -o $@
endif
-$(DIR)/$(DEBUG_DIR)%.res: %.rc makedir
+$(DIR)/$(DEBUG_DIR)%.res: %.rc
ifeq ($(FREE_WINDOWS),true)
windres $< -O coff -o $@
else
$(SRCHOME)/tools/cygwin/cl_wrapper.pl - rc /fo$@ $<
endif
-$(DIR)/$(DEBUG_DIR)%.class: %.java makedir
+$(DIR)/$(DEBUG_DIR)%.class: %.java
ifdef JARS
$(JAVAC) -verbose -g -deprecation -sourcepath . -classpath "$(JARS)" -d $(DIR)/$(DEBUG_DIR) $<
else
$(JAVAC) -verbose -g -deprecation -d $(DIR)/$(DEBUG_DIR) $<
endif
-$(DIR)/$(DEBUG_DIR)%.h: $(DIR)/$(DEBUG_DIR)%.class makedir
+$(DIR)/$(DEBUG_DIR)%.h: $(DIR)/$(DEBUG_DIR)%.class
$(JAVAH) -classpath $(DIR)/$(DEBUG_DIR) -d $(DIR)/$(DEBUG_DIR) -jni $*
%.h: