From 1fb596929f24a7e5ef65ce64a92bf11f51e156a3 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 5 Dec 2000 22:45:39 +0000 Subject: [PATCH] Add "*clean" rules. --- v7/src/Makefile.std | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/v7/src/Makefile.std b/v7/src/Makefile.std index 61b5ada67..eb4baa75e 100644 --- a/v7/src/Makefile.std +++ b/v7/src/Makefile.std @@ -1,4 +1,4 @@ -# $Id: Makefile.std,v 1.4 2000/12/05 22:35:09 cph Exp $ +# $Id: Makefile.std,v 1.5 2000/12/05 22:45:39 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -34,6 +34,16 @@ setup: tags TAGS: etags *.scm +mostlyclean: + rm -f *.bin *.ext *.com *.bci + +clean: mostlyclean + +distclean: clean + +maintainer-clean: distclean + rm -f Makefile .edwin-ffi + stage1: mkdir STAGE1 && mv -f *.com *.bci STAGE1/. @@ -79,7 +89,7 @@ cpstage3: lnstage3: ln -f STAGE3/* . -.PHONY: all setup tags TAGS +.PHONY: all setup tags TAGS mostlyclean clean distclean maintainer-clean .PHONY: stage1 unstage1 rmstage1 cpstage1 lnstage1 .PHONY: stage2 unstage2 rmstage2 cpstage2 lnstage2 .PHONY: stage3 unstage3 rmstage3 cpstage3 lnstage3 -- 2.25.1