diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-22 18:44:00 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-22 18:44:00 +0000 |
commit | 053cd84b0fe3ac3ba35be43706b78b8122b95fb9 (patch) | |
tree | ddd49add73d443b28e98e3021289aa38e514b9b9 /docs/tutorials/006 | |
parent | 1da56961823d8106a5e1533434e55f7063e2ef6b (diff) | |
download | ATCD-053cd84b0fe3ac3ba35be43706b78b8122b95fb9.tar.gz |
replaced rm -f with $(RM)
Diffstat (limited to 'docs/tutorials/006')
-rw-r--r-- | docs/tutorials/006/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/006/Makefile b/docs/tutorials/006/Makefile index ea8bbb401b3..57a90088d72 100644 --- a/docs/tutorials/006/Makefile +++ b/docs/tutorials/006/Makefile @@ -95,13 +95,13 @@ HTML : # SHAR : # [ ! -f combine.shar ] || exit 1 - shar -T hdr bodies *.pre *.pst > combine.shar && rm -f hdr bodies *.pre *.pst + shar -T hdr bodies *.pre *.pst > combine.shar && $(RM) hdr bodies *.pre *.pst UNSHAR : # sh combine.shar CLEAN : realclean - rm -f hdr bodies *.pre *.pst .depend + $(RM) hdr bodies *.pre *.pst .depend #---------------------------------------------------------------------------- # Dependencies |