From: Chris Lattner Date: Mon, 15 Oct 2001 20:08:19 +0000 (+0000) Subject: Add rule to build executables X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=abe959c0636ef19bdb57b45d85d9639174e18e3a;p=oota-llvm.git Add rule to build executables git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@846 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index 0f8c38056ff..474ba2ebb5c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -57,4 +57,7 @@ clean : %.o: %.s $(CC) -c $(CCFLAGS) $< -xarch=v9 +%: %.o + $(CC) -o $@ $< -xarch=v9 +