mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
f42a7804c8
llvm-svn: 272
14 lines
385 B
Makefile
14 lines
385 B
Makefile
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: analyze
|
|
clean ::
|
|
rm -f analyze
|
|
|
|
LIBDEPS = ../../lib/Optimizations/Debug/libopt.a ../../lib/Analysis/Debug/libanalysis.a
|
|
|
|
analyze : $(ObjectsG) Debug/.dir Depend/.dir $(LIBDEPS)
|
|
$(LinkG) -o $@ $(ObjectsG) -lopt -lasmparser \
|
|
-lbcreader -lvmcore -lasmwriter -lanalysis \
|
|
-lopt -lsupport
|