diff options
-rw-r--r-- | tools/llvm-config/Makefile | 4 | ||||
-rw-r--r-- | utils/llvm-config/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile index 8a11a279d1..c4a5407374 100644 --- a/tools/llvm-config/Makefile +++ b/tools/llvm-config/Makefile @@ -24,7 +24,9 @@ SUB_LDFLAGS = # should only be re-built manually. No other rule in this file should # depend on LibDeps.txt. LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir) - $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt + $(Echo) "Regenerating LibDeps.txt" + $(Verb) $(LLVM_SRC_ROOT)/utils/GenLibDeps.pl -flat $(LibDir) | \ + sort > LibDeps.txt # Find all the cyclic dependencies between various LLVM libraries, so we # don't have to process them at runtime. diff --git a/utils/llvm-config/Makefile b/utils/llvm-config/Makefile index 8a11a279d1..c4a5407374 100644 --- a/utils/llvm-config/Makefile +++ b/utils/llvm-config/Makefile @@ -24,7 +24,9 @@ SUB_LDFLAGS = # should only be re-built manually. No other rule in this file should # depend on LibDeps.txt. LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir) - $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt + $(Echo) "Regenerating LibDeps.txt" + $(Verb) $(LLVM_SRC_ROOT)/utils/GenLibDeps.pl -flat $(LibDir) | \ + sort > LibDeps.txt # Find all the cyclic dependencies between various LLVM libraries, so we # don't have to process them at runtime. |