move precompiled bytecode message to only load.c recompilation
This commit is contained in:
parent
6650ef58d3
commit
af74369e0b
8
makefile
8
makefile
@ -206,7 +206,6 @@ ifeq ($(REPLXX_DIR),build/replxxSubmodule)
|
|||||||
@git submodule update --init build/replxxSubmodule
|
@git submodule update --init build/replxxSubmodule
|
||||||
endif
|
endif
|
||||||
ifeq ($(BYTECODE_DIR),bytecodeSubmodule)
|
ifeq ($(BYTECODE_DIR),bytecodeSubmodule)
|
||||||
@echo "Using precompiled bytecode; see readme for how to build your own"
|
|
||||||
@git submodule update --init build/bytecodeSubmodule
|
@git submodule update --init build/bytecodeSubmodule
|
||||||
endif
|
endif
|
||||||
@export bd=$$(${MAKE} builddir); \
|
@export bd=$$(${MAKE} builddir); \
|
||||||
@ -253,8 +252,13 @@ ${bd}/%.o: src/builtins/%.c
|
|||||||
@echo $< | cut -c 5-
|
@echo $< | cut -c 5-
|
||||||
@$(CC_INC) $@.d -o $@ -c $<
|
@$(CC_INC) $@.d -o $@ -c $<
|
||||||
|
|
||||||
.INTERMEDIATE: core base utils jit builtins
|
.INTERMEDIATE: core base utils jit builtins bytecodeMessage
|
||||||
|
|
||||||
|
$(bd)/load.o: bytecodeMessage
|
||||||
|
bytecodeMessage:
|
||||||
|
ifeq ($(BYTECODE_DIR),bytecodeSubmodule)
|
||||||
|
@echo "Using precompiled bytecode; see readme for how to build your own"
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
# singeli
|
# singeli
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user