diff options
Diffstat (limited to 'llvm/tools/opt/Makefile')
-rw-r--r-- | llvm/tools/opt/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/tools/opt/Makefile b/llvm/tools/opt/Makefile new file mode 100644 index 00000000000..71bdcb85d91 --- /dev/null +++ b/llvm/tools/opt/Makefile @@ -0,0 +1,10 @@ +LEVEL = ../.. +include $(LEVEL)/Makefile.common + +all:: opt +clean :: + rm -f opt + +opt : $(ObjectsG) + $(LinkG) -o $@ $(ObjectsG) -lvmcore -lanalysis -lbcreader -lbcwriter \ + -lopt -lasmwriter |