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:
authorHans Lambermont <hans@lambermont.dyndns.org>2003-01-04 18:07:25 +0300
committerHans Lambermont <hans@lambermont.dyndns.org>2003-01-04 18:07:25 +0300
commit45b243ac4795ae36fd852581d11db1e41a5c0589 (patch)
tree31ab4f1aa6e0887fccb9e8ddefac47ef80cf0b0a /intern/guardedalloc
parent302399b9d0a91e0dbe05e66975c9171085595f87 (diff)
Workaround for the header file copying dependency hell
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/guardedalloc/Makefile b/intern/guardedalloc/Makefile
index a63e9107cc8..702e7d5264f 100644
--- a/intern/guardedalloc/Makefile
+++ b/intern/guardedalloc/Makefile
@@ -25,7 +25,7 @@
#
# The Original Code is: all of this file.
#
-# Contributor(s): none yet.
+# Contributor(s): Hans Lambermont
#
# ***** END GPL/BL DUAL LICENSE BLOCK *****
# decimation main makefile.
@@ -46,11 +46,11 @@ install: all debug
@[ -d $(NAN_GUARDEDALLOC)/include ] || mkdir $(NAN_GUARDEDALLOC)/include
@[ -d $(NAN_GUARDEDALLOC)/lib ] || mkdir $(NAN_GUARDEDALLOC)/lib
@[ -d $(NAN_GUARDEDALLOC)/lib/debug ] || mkdir $(NAN_GUARDEDALLOC)/lib/debug
- cp -f $(DIR)/libguardedalloc.a $(NAN_GUARDEDALLOC)/lib/
- cp -f $(DIR)/debug/libguardedalloc.a $(NAN_GUARDEDALLOC)/lib/debug/
+ @../tools/cpifdiff.sh $(DIR)/libguardedalloc.a $(NAN_GUARDEDALLOC)/lib/
+ @../tools/cpifdiff.sh $(DIR)/debug/libguardedalloc.a $(NAN_GUARDEDALLOC)/lib/debug/
ifeq ($(OS),darwin)
ranlib $(NAN_GUARDEDALLOC)/lib/libguardedalloc.a
ranlib $(NAN_GUARDEDALLOC)/lib/debug/libguardedalloc.a
endif
- cp -f *.h $(NAN_GUARDEDALLOC)/include/
+ @../tools/cpifdiff.sh *.h $(NAN_GUARDEDALLOC)/include/