From 5f5c00d84c3fb3332827b74ce55a4f69c05e664e Mon Sep 17 00:00:00 2001 From: levine Date: Wed, 5 May 1999 18:07:43 +0000 Subject: replace /bin/rm with $(RM) and /bin/mv with mv --- bin/Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'bin') diff --git a/bin/Makefile b/bin/Makefile index 4af39ba9094..fb69b34ef03 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -47,10 +47,10 @@ else # Not building envinfo include $(ACE_ROOT)/include/makeinclude/platform_macros.GNU -CFILES = clone.cpp +CFILES = clone.cpp OFILES = clone.o DFLAGS = -b elf -CCFLAGS += -I$(ACE_ROOT) +CCFLAGS += -I$(ACE_ROOT) ############################################################################# # C++ directives @@ -63,11 +63,8 @@ CCFLAGS += -I$(ACE_ROOT) clone: $(OFILES) $(CXX) $(CCFLAGS) -o $@ $(OFILES) -clean: - -/bin/rm -f *.o *.out *~ core - -realclean: clean - -/bin/rm -fr clone +realclean: clean + -$(RM) clone endif # envinfo -- cgit v1.2.1