mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:06:44 +01:00
7 lines
272 B
Makefile
7 lines
272 B
Makefile
# This is just a rough approximation of LLVM deps
|
|
LLVM_DEPS:=$(wildcard $(addprefix $(CFG_LLVM_SRC_DIR)/, \
|
|
* */*h */*/*h */*/*/*h */*cpp */*/*cpp */*/*/*cpp))
|
|
|
|
$(LLVM_CONFIG): $(LLVM_DEPS)
|
|
@$(call E, make: llvm)
|
|
$(Q)make -C $(CFG_LLVM_BUILD_DIR)
|