Remove broken 99-bottles makefile and run script

This commit is contained in:
Brian Anderson 2011-03-06 20:15:03 -05:00 committed by Graydon Hoare
parent 97245edd80
commit 595c4862ab
2 changed files with 0 additions and 23 deletions

View file

@ -1,20 +0,0 @@
RC:=../../../rustboot
RFLAGS:=-L ../../..
TARGETS:= 99bob-simple 99bob-iter 99bob-tail 99bob-pattern
TARGET_X86:=$(addsuffix .x86,$(TARGETS))
TARGET_LLVM:=$(addsuffix .llvm,$(TARGETS))
all : x86s llvms
clean:
rm $(TARGET_X86) $(TARGET_LLVM)
x86s : $(TARGET_X86)
llvms: $(TARGET_LLVM)
%.x86 : %.rs
$(RC) $(RFLAGS) $^ -o $@
%.llvm : %.rs
$(RC) $(RFLAGS) -llvm $^ -o $@

View file

@ -1,3 +0,0 @@
#!/bin/sh
make -k $1.x86
DYLD_LIBRARY_PATH=../../.. ./$1.x86