llvm-6502/tools/llc/Makefile
Vikram S. Adve cb465fc71e Driver and options for the llc compiler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234 91177308-0d34-0410-b5e6-96231b3b80d8
2001-07-21 12:42:29 +00:00

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