Summary: SCCS vs. RCS

Rob McMahon cudcv at cu.warwick.ac.uk
Wed Nov 21 11:01:28 AEST 1990


>On the other hand, if one uses a ``standard'' make, there is no support for a
>',' as a delimiter for suffixes, so it's rather difficult to automate use of
>RCS.

Uh ?  You don't need it.  Most of what you need can be done with rules like

.SUFFIXES:	.c,v

.c,v.c:
	$(CO) -q $*.c
.c,v.o:
	$(CO) -q $*.c
	$(CC) $(CFLAGS) -c $*.c
	$(RM) -f $*.c

... etc.  Note that for SCCS it *has* to be built into make, because it uses
prefixes instead of suffixes.

Rob
--
UUCP:   ...!mcsun!ukc!warwick!cudcv	PHONE:  +44 203 523037
JANET:  cudcv at uk.ac.warwick             INET:   cudcv at warwick.ac.uk
Rob McMahon, Computing Services, Warwick University, Coventry CV4 7AL, England



More information about the Comp.unix mailing list