Make the makefile work

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-07-21 19:31:40 +00:00
parent d7fa0fdbd7
commit 0df0e74f2b

View File

@ -1,9 +1,5 @@
LEVEL = ../..
DIRS =
LIBRARYNAME = llc
## List source files in link order
Source = \
llc.o \
@ -12,12 +8,11 @@ Source = \
include $(LEVEL)/Makefile.common
all:: llc
clean::
rm -f llc
llc : $(ObjectsG)
$(LinkG) -o $@ -static \
-lllc -lselect -lsparc -ltarget \
$(LinkG) -o $@ $(ObjectsG) \
-lselect -lsparc -ltarget \
-lopt -lbcreader -lbcwriter \
-lvmcore -lasmwriter -lanalysis -lsupport