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/keymaker
parent302399b9d0a91e0dbe05e66975c9171085595f87 (diff)
Workaround for the header file copying dependency hell
Diffstat (limited to 'intern/keymaker')
-rw-r--r--intern/keymaker/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/keymaker/Makefile b/intern/keymaker/Makefile
index 21ff0c70192..d20bea58557 100644
--- a/intern/keymaker/Makefile
+++ b/intern/keymaker/Makefile
@@ -24,7 +24,7 @@
#
# The Original Code is: all of this file.
#
-# Contributor(s): none yet.
+# Contributor(s): Hans Lambermont
#
# ***** END GPL/BL DUAL LICENSE BLOCK *****
# blender keyreader-library makefile
@@ -71,8 +71,8 @@ install: all debug
@[ -d $(LCGDIR)/$(LIBNAME) ] || mkdir $(LCGDIR)/$(LIBNAME)
@[ -d $(LCGDIR)/$(LIBNAME)/include ] || mkdir $(LCGDIR)/$(LIBNAME)/include
@[ -d $(LCGDIR)/$(LIBNAME)/lib ] || mkdir $(LCGDIR)/$(LIBNAME)/lib
- cp -f blenkey.h $(LCGDIR)/$(LIBNAME)/include/blenkey.h
- cp -f $(LIB_a) $(LCGDIR)/$(LIBNAME)/lib/
+ @../tools/cpifdiff.sh blenkey.h $(LCGDIR)/$(LIBNAME)/include/blenkey.h
+ @../tools/cpifdiff.sh $(LIB_a) $(LCGDIR)/$(LIBNAME)/lib/
ifeq ($(OS),darwin)
ranlib $(LCGDIR)/$(LIBNAME)/lib/lib$(LIBNAME).a
endif