Make the makefile work

llvm-svn: 247
This commit is contained in:
Chris Lattner 2001-07-21 19:31:40 +00:00
parent 7309d66d73
commit 897e02b2c0
1 changed files with 2 additions and 7 deletions

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