%.s:	%.bc
	llc $<

%.o:	%.bc
	llc -filetype obj $<

%-dis.ll:	%.bc
	llvm-dis -o $@ $<

%.bc:	%.ll
	llvm-as $<

%-opt.bc:	%.bc
	opt -O3 < $< > $@
