diff options
author | David Reiss <dreiss@apache.org> | 2008-02-24 16:42:18 +0000 |
---|---|---|
committer | David Reiss <dreiss@apache.org> | 2008-02-24 16:42:18 +0000 |
commit | 2ca456a8ae1599a2112eed0ddffa922657c8b123 (patch) | |
tree | 262d58e0e9af878b5534c6e399350c6df4edc401 /test/rb | |
parent | 223d6bd1ac0c033aa01cad3aad8051df8a161a49 (diff) | |
download | thrift-2ca456a8ae1599a2112eed0ddffa922657c8b123.tar.gz |
Make "make clean" rules a bit more standard.
Summary:
make-generic is some sort of internal undocumented thing.
make-local is what is supposed to be used for this stuff.
Also use $(RM) instead of "rm -f".
Reviewed By: marc
Test Plan: make clean
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665498 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/rb')
-rw-r--r-- | test/rb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rb/Makefile b/test/rb/Makefile index 502a98190..326f7206a 100644 --- a/test/rb/Makefile +++ b/test/rb/Makefile @@ -19,4 +19,4 @@ tests: stubs ruby TestSuite.rb clean: - rm -fr gen-rb + $(RM) -r gen-rb |