1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Removal of more unnecesary stuff

llvm-svn: 1557
This commit is contained in:
Chris Lattner 2002-01-23 05:50:04 +00:00
parent c293ab6ae2
commit e286e092e9

View File

@ -66,14 +66,10 @@ clean ::
$(LLC) -f -trace $(LLCFLAGS) $<
## FIXME: LIBS should be specified, not hardcoded to -lm
#Output/%.native: %.c Output/.dir
# $(NATGCC) $+ -lm -o $@
Output/%.ll: %.c $(LCC) Output/.dir
$(LCC) $(LCFLAGS) -S $< -o $@
%.bc: %.ll $(LAS)
Output/%.bc: Output/%.ll $(LAS)
$(LAS) $< -o $@
#%.s: %.linked.bc
@ -91,10 +87,10 @@ Output/%.ll: %.c $(LCC) Output/.dir
%.o: %.c
## The next two rules are for disassembling an executable or an object file
%.dis: %
$(DIS) $< > $@
#%.dis: %
# $(DIS) $< > $@
%.dis: %.o
$(DIS) $< > $@
#%.dis: %.o
# $(DIS) $< > $@