1
0
Fork 0

avoid parallel builds

This commit is contained in:
Frank Celler 2012-02-19 23:04:56 +01:00
parent d203ef5433
commit 7cd473fad5
1 changed files with 6 additions and 2 deletions

View File

@ -51,9 +51,11 @@ if ENABLE_32BIT
V8_BUILD_VERSION=ia32
endif
BUILT_SOURCES += $(V8_LIBS)
BUILT_SOURCES += @V8_LIBS@
$(V8_LIBS):
@V8_LIBS@: .v8-build
.v8-build:
@echo
@echo "--------------------------------------------------------------------------------"
@echo "BUILDING V8"
@ -67,6 +69,8 @@ else
cd @top_srcdir@/3rdParty/V8 && make library=static snapshot=off $(V8_BUILD_VERSION).release
endif
touch .v8-build
@echo
@echo "--------------------------------------------------------------------------------"
@echo "BUILD V8 FINISHED"