mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 07:00:57 +00:00
8f367bd3c0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
267 B
Makefile
11 lines
267 B
Makefile
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: opt
|
|
clean ::
|
|
rm -f opt
|
|
|
|
opt : $(ObjectsG) ../../lib/Optimizations/Debug/libopt.a
|
|
$(LinkG) -o $@ $(ObjectsG) -lopt -lbcreader -lbcwriter \
|
|
-lasmwriter -lanalysis -lvmcore -lsupport
|