projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f927bb4
)
Add rule to build executables
author
Chris Lattner
<sabre@nondot.org>
Mon, 15 Oct 2001 20:08:19 +0000
(20:08 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 15 Oct 2001 20:08:19 +0000
(20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@846
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Makefile
patch
|
blob
|
history
diff --git
a/test/Makefile
b/test/Makefile
index 0f8c38056ff34ac2e2b60d0646ba0aa258ad95a7..474ba2ebb5c0c63fc88193ef651b270344c487a6 100644
(file)
--- a/
test/Makefile
+++ b/
test/Makefile
@@
-57,4
+57,7
@@
clean :
%.o: %.s
$(CC) -c $(CCFLAGS) $< -xarch=v9
+%: %.o
+ $(CC) -o $@ $< -xarch=v9
+