mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 07:18:44 +00:00
11 lines
258 B
Makefile
11 lines
258 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
|