mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-28 23:43:50 +00:00
11 lines
218 B
Makefile
11 lines
218 B
Makefile
|
LEVEL = ../..
|
||
|
include $(LEVEL)/Makefile.common
|
||
|
|
||
|
all:: opt
|
||
|
clean ::
|
||
|
rm -f opt
|
||
|
|
||
|
opt : $(ObjectsG)
|
||
|
$(LinkG) -o $@ $(ObjectsG) -lvmcore -lanalysis -lbcreader -lbcwriter \
|
||
|
-lopt -lasmwriter
|