PROG := ir-test all: clean $(PROG) $(PROG): $(PROG).bc llvm-ld -o $@ -native $< %.bc: %.ll llvm-as $< clean: rm -f *~ *.bc $(PROG)