diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-05 18:07:43 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-05 18:07:43 +0000 |
commit | 5f5c00d84c3fb3332827b74ce55a4f69c05e664e (patch) | |
tree | 95cb47088d1e5f519a62322d5c96de6c82c95340 /bin | |
parent | 818c186bb2cd6dd43ef4eb4ad939a8dd736eef29 (diff) | |
download | ATCD-5f5c00d84c3fb3332827b74ce55a4f69c05e664e.tar.gz |
replace /bin/rm with $(RM) and /bin/mv with mv
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
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 |