[net.sources] 'rcs' and 'make'

jem (12/15/82)

Here are the changes and additions I've made to /usr/src/cmd/make/files.c
to teach 'make' how to handle 'rcs' files:

 	".SUFFIXES : .out .o .c .f .e .r .y .yr .ye .l .s .cl .p .v .vo",

 	"CO=co",
 	"COFLAGS=",

 	".v.c .v.f .v.e .v.r .v.y .v.yr .v.ye .v.l .v.s .v.h :",
 	"\t$(CO) $(COFLAGS) $<",

 	".v.o :",
 	"\t$(CO) $(COFLAGS) $<",
 	"\t@make $*.vo",

 	".c.vo .f.vo .e.vo .r.vo .y.vo .yr.vo .ye.vo .l.vo .s.vo :",
 	"\t@make $*.o",
 	"\trm -f $<",