diff options
Diffstat (limited to 'contrib/llvm/utils/FileUpdate/Makefile')
-rw-r--r-- | contrib/llvm/utils/FileUpdate/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/llvm/utils/FileUpdate/Makefile b/contrib/llvm/utils/FileUpdate/Makefile new file mode 100644 index 0000000..5b545c2 --- /dev/null +++ b/contrib/llvm/utils/FileUpdate/Makefile @@ -0,0 +1,21 @@ +##===- 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 + +# Don't install this utility +NO_INSTALL = 1 + +include $(LEVEL)/Makefile.common + |