# Minimal Makefile, just for retrieving the file

COFLAGS = -q -M
RCSCLEAN = rcsclean

.PHONY:	all clean rcsclean checkout
all:	skip

clean:	
	@true

checkout:
	-$(CO) $(COFLAGS) $(REVISION) RCS/* < /dev/null

rcsclean:
	$(RCSCLEAN)

