[llvm-commits] CVS: llvm/utils/llvm-config/Makefile
Reid Spencer
reid at x10sys.com
Sun Mar 19 14:11:05 PST 2006
Changes in directory llvm/utils/llvm-config:
Makefile added (r1.1)
---
Log message:
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.
---
Diffs of the changes: (+16 -0)
Makefile | 16 ++++++++++++++++
1 files changed, 16 insertions(+)
Index: llvm/utils/llvm-config/Makefile
diff -c /dev/null llvm/utils/llvm-config/Makefile:1.1
*** /dev/null Sun Mar 19 16:11:04 2006
--- llvm/utils/llvm-config/Makefile Sun Mar 19 16:10:53 2006
***************
*** 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
More information about the llvm-commits
mailing list