llvm-6502/tools/llc/Makefile
Chris Lattner 0df0e74f2b Make the makefile work
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247 91177308-0d34-0410-b5e6-96231b3b80d8
2001-07-21 19:31:40 +00:00

19 lines
309 B
Makefile

LEVEL = ../..
## List source files in link order
Source = \
llc.o \
LLCOptions.o
include $(LEVEL)/Makefile.common
all:: llc
clean::
rm -f llc
llc : $(ObjectsG)
$(LinkG) -o $@ $(ObjectsG) \
-lselect -lsparc -ltarget \
-lopt -lbcreader -lbcwriter \
-lvmcore -lasmwriter -lanalysis -lsupport