diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-15 20:08:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-15 20:08:19 +0000 |
commit | abe959c0636ef19bdb57b45d85d9639174e18e3a (patch) | |
tree | e7ff1dfa559fec2f9bfd29e6e200b2d0df14c050 /test/Makefile | |
parent | f927bb482eeb0ca90e2429b8a69147713185ea06 (diff) |
Add rule to build executables
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@846 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 0f8c38056f..474ba2ebb5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -57,4 +57,7 @@ clean : %.o: %.s $(CC) -c $(CCFLAGS) $< -xarch=v9 +%: %.o + $(CC) -o $@ $< -xarch=v9 + |