summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/Hardpack
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 19:12:03 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 19:12:03 +0000
commita7fe79aacca7b03c7d911c76504ff8a722edde1a (patch)
tree131ae27b8ba3f14160bf6a3bca97f6b0fe323835 /TAO/performance-tests/Cubit/Hardpack
parent698506ff3ccd2155e4f7f6d3b07432799e1022ad (diff)
downloadATCD-a7fe79aacca7b03c7d911c76504ff8a722edde1a.tar.gz
replaced rm with $(RM)
Diffstat (limited to 'TAO/performance-tests/Cubit/Hardpack')
-rw-r--r--TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile b/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile
index a9713cf8083..3e8129e6517 100644
--- a/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile
+++ b/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile
@@ -40,15 +40,15 @@ cubit.hh: cubit.idl
$(PREPRO) cubit.idl
clean:
- rm -f client server cubit.hh *_s.cc *_c.cc *.o;
- rm -rf Templates.DB; rm -f *~
+ $(RM) client server cubit.hh *_s.cc *_c.cc *.o;
+ $(RM) -r Templates.DB; $(RM) *~
.SUFFIXES: .cc
.cc.a:
$(CCC) -c $(CCFLAGS) $<
$(AR) $(ARFLAGS) $@ $*.o
- rm -f $*.o
+ $(RM) $*.o
.cc:
$(CCC) $(CCFLAGS) $(LDFLAGS) $< -o $@