2011-11-02 08:09:44 +08:00
|
|
|
# This is just a rough approximation of LLVM deps
|
|
|
|
LLVM_DEPS:=$(wildcard $(addprefix $(CFG_LLVM_SRC_DIR)/, \
|
|
|
|
* */*h */*/*h */*/*/*h */*cpp */*/*cpp */*/*/*cpp))
|
2011-11-02 06:48:30 +08:00
|
|
|
|
2011-11-03 07:21:17 +08:00
|
|
|
define DEF_LLVM_RULES
|
|
|
|
|
|
|
|
# If CFG_LLVM_ROOT is defined then we don't build LLVM ourselves
|
|
|
|
ifeq ($(CFG_LLVM_ROOT),)
|
|
|
|
|
|
|
|
$$(LLVM_CONFIG_$(1)): $$(LLVM_DEPS_$(1))
|
|
|
|
@$$(call E, make: llvm)
|
2011-11-04 03:17:37 +08:00
|
|
|
$$(Q)$$(MAKE) -C $$(CFG_LLVM_BUILD_DIR_$(1))
|
2011-11-03 07:21:17 +08:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(call DEF_LLVM_RULES,$(target))))
|