From d6bae0ca62f4d2e18a2bc6497a30df951b4d6880 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 19 Mar 2006 22:10:53 +0000 Subject: [PATCH] First cut at the Makefile for llvm-config. This initial version just provides the rule for building the LibDeps.txt file using GenLibDeps.pl. This needs to be done from time to time manually in order to keep LibDeps.txt up to date. llvm-svn: 26875 --- utils/llvm-config/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 utils/llvm-config/Makefile diff --git a/utils/llvm-config/Makefile b/utils/llvm-config/Makefile new file mode 100644 index 00000000000..34dfa5542be --- /dev/null +++ b/utils/llvm-config/Makefile @@ -0,0 +1,16 @@ +##===- utils/llvm-config/Makefile --------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by Reid Spencer and Eric Kidd and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. + + +include $(LEVEL)/Makefile.common + +LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir) + $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt