subdirs.mk: Add forgotten rm -rf {variable name}

This commit is contained in:
Jan Lindemann 2002-07-25 20:26:41 +00:00 committed by Jan Lindemann
commit 257a35a0e0

View file

@ -1,3 +1,8 @@
clean.var:
rm -rf $(CLEAN)
distclean.var:
rm -rf $(DISTCLEAN)
ifdef SUBDIRS
all.dirs:
@ -11,8 +16,8 @@ distclean.dirs:
all: all.dirs
install: install.dirs
clean: clean.dirs
distclean: distclean.dirs
clean: clean.dirs clean.var
distclean: distclean.dirs distclean.var
else