mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-30 15:45:26 +00:00
b7ca711494
llvm-svn: 234
24 lines
350 B
Makefile
24 lines
350 B
Makefile
LEVEL = ../..
|
|
|
|
DIRS =
|
|
|
|
LIBRARYNAME = llc
|
|
|
|
## List source files in link order
|
|
Source = \
|
|
llc.o \
|
|
LLCOptions.o
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: llc
|
|
|
|
clean::
|
|
rm -f llc
|
|
|
|
llc : $(ObjectsG) $(LibsG)
|
|
$(LinkG) -o $@ -static \
|
|
-lllc -lselect -lsparc -ltarget \
|
|
-lopt -lbcreader -lbcwriter \
|
|
-lvmcore -lasmwriter -lanalysis -lsupport
|