diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-23 05:50:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-23 05:50:04 +0000 |
commit | 747604218fecb44cf3acf553984cfc57444bd7d4 (patch) | |
tree | 398502385a62b09c3fe228585eb98b9973c2bf13 /test/Makefile.tests | |
parent | e21206268d267b8eaa416e21ac8e12353cf6bda9 (diff) |
Removal of more unnecesary stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r-- | test/Makefile.tests | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests index 1f283410d8..3390d01b11 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -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) $< > $@ |