# Makefile for ~CLU/sys/clu

RM    = /bin/rm -f
FLUFF = *~ *.old *.bak .*~ .*.old .*.bak

all:

clean:
	${RM} ${FLUFF}

veryclean: clean
