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>2007-06-25 21:36:04 +0400
committerKent Mein <mein@cs.umn.edu>2007-06-25 21:36:04 +0400
commitdd0244aa11990f737e0f5580b97e807388475259 (patch)
tree6121d2d8eefb881647eac8775a6eef03ce1e7061
parent9dd0c5abe59d69357ac91e52954db5d1db81ec44 (diff)
Make it so that we link with the same compiler for verse as everything else.
(was using $(CC) while the rest of blender is using $(CCC)
-rw-r--r--extern/verse/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/extern/verse/Makefile b/extern/verse/Makefile
index 91ab4d26eaa..2e88ee2223f 100644
--- a/extern/verse/Makefile
+++ b/extern/verse/Makefile
@@ -34,6 +34,7 @@ DIR = $(OCGDIR)/$(SOURCEDIR)
DIRS = dist
include nan_subdirs.mk
+include nan_compile.mk
include nan_link.mk
DISTDIR = dist
@@ -53,5 +54,5 @@ install: all debug
ifeq ($(OS),darwin)
ranlib $(NAN_VERSE)/lib/libverse.a
endif
- $(CC) $(LDFLAGS) -o $(DIR)/verse$(EXT) $(DIR)/libverse.a $(LIBS) $(SLIBS) $(LLIBS) $(DADD) $(LOPTS)
+ $(CCC) $(LDFLAGS) -o $(DIR)/verse$(EXT) $(DIR)/libverse.a $(LIBS) $(SLIBS) $(LLIBS) $(DADD) $(LOPTS)
@$(CP) $(DIR)/verse$(EXT) $(OCGDIR)/bin