From: Chris Hanson Date: Tue, 5 Dec 2000 22:56:56 +0000 (+0000) Subject: Add commands to delete packaging files when appropriate. X-Git-Tag: 20090517-FFI~3152 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=078ba1df29448e17df40278e07454f235ebe142c;p=mit-scheme.git Add commands to delete packaging files when appropriate. --- diff --git a/v7/src/Makefile.std b/v7/src/Makefile.std index eb4baa75e..6a1712e7e 100644 --- a/v7/src/Makefile.std +++ b/v7/src/Makefile.std @@ -1,4 +1,4 @@ -# $Id: Makefile.std,v 1.5 2000/12/05 22:45:39 cph Exp $ +# $Id: Makefile.std,v 1.6 2000/12/05 22:56:56 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -35,7 +35,16 @@ tags TAGS: etags *.scm mostlyclean: - rm -f *.bin *.ext *.com *.bci + rm -f *.bin *.ext *.com *.bci *.bco *.bld *.crf *.fre *.glo + @for FN in *.con; do \ + test "${FN}" = "triv.con" \ + || rm -f "${FN}"; \ + done + @for FN in *.ldr; do \ + test "${FN}" = "edwin.ldr" \ + || test "${FN}" = "triv.ldr" \ + || rm -f "${FN}"; \ + done clean: mostlyclean