llvm/ir-test/Makefile
josh d1fb787959 added ir-test directory
git-svn-id: svn://anubis/misc/llvm@62 bd8a9e45-a331-0410-811e-c64571078777
2008-11-01 03:27:01 +00:00

14 lines
139 B
Makefile

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