diff options
Diffstat (limited to 'tools/opt/Makefile')
-rw-r--r-- | tools/opt/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/opt/Makefile b/tools/opt/Makefile new file mode 100644 index 000000000000..0afb00217574 --- /dev/null +++ b/tools/opt/Makefile @@ -0,0 +1,15 @@ +##===- tools/opt/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 = opt +REQUIRES_EH := 1 + +LINK_COMPONENTS := bitreader bitwriter instrumentation scalaropts ipo + +include $(LEVEL)/Makefile.common |