diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-03 05:12:16 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-03 05:12:16 +0000 |
commit | 05084716c13b4ea79ea29528dcb3c3f8a5271638 (patch) | |
tree | 693b01d2752d9cd835c39110d4893e0f7acdec44 /utils/FileUpdate/Makefile | |
parent | defc85327a7cd0ad679cd3fe94f671d6549fe4a1 (diff) | |
download | external_llvm-05084716c13b4ea79ea29528dcb3c3f8a5271638.zip external_llvm-05084716c13b4ea79ea29528dcb3c3f8a5271638.tar.gz external_llvm-05084716c13b4ea79ea29528dcb3c3f8a5271638.tar.bz2 |
Add FileUpdate tool, conditionally updates its output based on its input.
- Gratuitous and unused, but possibly useful one day.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77954 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/FileUpdate/Makefile')
-rw-r--r-- | utils/FileUpdate/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/utils/FileUpdate/Makefile b/utils/FileUpdate/Makefile new file mode 100644 index 0000000..90fa6f0 --- /dev/null +++ b/utils/FileUpdate/Makefile @@ -0,0 +1,18 @@ +##===- utils/FileUpdate/Makefile ---------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. +TOOLNAME = FileUpdate +USEDLIBS = LLVMSupport.a LLVMSystem.a + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + +include $(LEVEL)/Makefile.common + |