4.3BSD/usr/contrib/rcs/src/Makefile
#$Header: Makefile,v 3.5 86/05/15 02:25:37 lepreau Exp $
# Copyright (C) 1982 by Walter F. Tichy
# Purdue University
# Computer Science Department
# West Lafayette, IN 47907
#
# All rights reserved. No part of this software may be sold or distributed
# in any form or by any means without the prior written permission of the
# author.
# Report problems and direct all inquiries to
# tichy@purdue, tichy@purdue-tcp, decvax!pur-ee!purdue!tichy
# INSTRUCTIONS
# ============
#
# 0. Do the instructions in rcsbase.h
#
# 1. Figure out where to put the modified diff and diff3 commands, and
# install them. (Read the instructions in the Make-files).
# Define the macros DIFF and DIFF3 accordingly (below).
DIFF = /bin/diff
DIFF3 = /usr/lib/diff3
# 2. Implant the macro DIFF3 as modified by you into the file merge.
# (That's a shell file.)
# 3. Figure out where to put the RCS commands; define TARGETDIR
# and merge accordingly.
DESTDIR=
TARGETDIR = /usr/new
MERGE = /usr/new/merge
# 4. Figure out where to put your old RCS commands; define OLDDIR
# accordingly. This is not needed if you don't have an old release of RCS.
# Instead, comment out the 5 lines in INSTALLNO that mv the old RCS
# commands to OLDDIR.
OLDDIR = /usr/old
# 5. Decide what loader flags you need, and define LDFLAGS accordingly.
# On the Vax you need none, on PDP-11s with split i/d you need -i.
LDFLAGS =
#LDFLAGS = -i
# 6. RCS can maintain a log of the use of the co and ci commands. If you
# want the logging, you must
# a) define SNOOP (that's where the process that writes the log goes),
# b) define SNOOPFILE (that's the file where SNOOP writes the log; it must
# be owned by the same user that owns SNOOP),
# c) include SNOOP and SNOOPFILE in the CFLAGS macro.
# If you don't want the logging of command usage, omit the SNOOP and
# SNOOPFILE definitions from CFLAGS.
# The two variants of the CFLAG macros are given below.
SNOOPFILE = /usr/wft/RCSLOG/log
SNOOP = /usr/wft/BIN/snoop
#CFLAGS = -O -DCOMPAT2 -DDIFF='"$(DIFF)"' -DMERGE='"$(MERGE)"' -DTARGETDIR='"$(TARGETDIR)"' -DSNOOPFILE='"$(SNOOPFILE)"' -DSNOOP='"$(SNOOP)"'
CFLAGS = -O -DDIFF='"$(DIFF)"' -DMERGE='"$(MERGE)"' -DTARGETDIR='"$(TARGETDIR)"' -DV4_2BSD
# 7. If you don't have release 2 RCS files around (e.g., if you don't have
# an old release of RCS), remove the word -DCOMPAT2 from whatever
# variant of CFLAGS you selected. -DCOMPAT2 assures that release 2
# RCS files can still be read. (After all release 2 RCS files have
# been updated with release 3 ci or rcs, you can remake RCS without
# -DCOMPAT2.) Also, make sure that the co commands at the end of this
# file are commented out; otherwise, Make will complain.
#
# 8. Now you are ready. Try to make all. If all went well, make
# INSTALLW if you want the logging of command usage, INSTALLNO otherwise.
#
# 9. IMPORTANT! When you have RCS installed, rename old RCS files as
# follows (if you have any):
# If the working file was "f.c" and the RCS file "f.c.v", rename the
# RCS file to "f.c,v". If the working file was "f.c" and the RCS file
# "f.v", rename the RCS file "f.c,v". Thus, suffixes are no longer
# dropped and RCS files end in ",v" rather than ".v".
#
# 10. If you want to maintain RCS with itself, be sure you preserve the
# original revision numbers, dates, etc. This is done by checking the
# files in with the -k option. When done, remove the comments from the
# co-rules at the end of this file.
OBJECTS = rcslex.o rcssyn.o rcsrev.o rcsgen.o rcssynTST.o rcsrevTST.o\
rcsedit.o rcsutil.o rcsfnms.o co.o ci.o ident.o rlog.o rcs.o\
rcsdiff.o rcsmerge.o rcskeep.o rcsfcmp.o snoop.o
RCSCOMMANDS = ci ident rcs rcsdiff rcsmerge rlog co sccstorcs
all: merge $(RCSCOMMANDS)
INSTALLW: INSTALLSNOOP INSTALLNO
install: INSTALLNO
INSTALLNO: merge $(RCSCOMMANDS)
grep -v '^# ' merge | sed -e "s,^DIFF3=.*,DIFF3=$(DIFF3)," >$(DESTDIR)$(MERGE)
# This takes out the comment lines and fixes the DIFF3 definition
chmod 755 $(DESTDIR)$(MERGE) $(RCSCOMMANDS)
# Save the old commands if you have any.
# mv $(TARGETDIR)/co $(OLDDIR)/co
# mv $(TARGETDIR)/ci $(OLDDIR)/ci
# mv $(TARGETDIR)/rlog $(OLDDIR)/rlog
# mv $(TARGETDIR)/rcs $(OLDDIR)/rcs
# mv $(TARGETDIR)/ident $(OLDDIR)/ident
for i in ${RCSCOMMANDS}; do \
(install -o root -s $$i ${DESTDIR}$(TARGETDIR)/$$i); done
INSTALLSNOOP: snoop
strip snoop
mv snoop $(SNOOP)
chmod u+s $(SNOOP)
chmod 644 $(SNOOPFILE)
# CAUTION: You may have to do a chown of SNOOP and SNOOPFILE.
clean: ; rm -f *.o $(RCSCOMMANDS) snoop
depend:;
$(OBJECTS): rcsbase.h
partime.o maketime.o co.o ci.o rlog.o rcsutil.o: time.h
CI = ci.o rcslex.o rcssyn.o rcsgen.o rcsedit.o rcsrev.o rcsutil.o rcsfnms.o rcskeep.o rcsfcmp.o
ci: $(CI); cc $(LDFLAGS) -o ci $(CI)
CO = co.o rcslex.o rcssyn.o rcsgen.o rcsedit.o rcsrev.o rcsutil.o rcsfnms.o partime.o maketime.o
co: $(CO); cc $(LDFLAGS) -o co $(CO)
ident: ident.o
cc -o ident ident.o
RLOG = rlog.o rcslex.o rcssyn.o rcsrev.o rcsutil.o partime.o maketime.o rcsfnms.o
rlog: $(RLOG); cc $(LDFLAGS) -o rlog $(RLOG)
RCS = rcs.o rcslex.o rcssyn.o rcsrev.o rcsutil.o rcsgen.o rcsedit.o rcsfnms.o
rcs: $(RCS); cc $(LDFLAGS) -o rcs $(RCS)
RCSDIFF = rcsdiff.o rcsutil.o rcsfnms.o rcsrev.o rcssyn.o rcslex.o
rcsdiff: $(RCSDIFF); cc -o rcsdiff $(RCSDIFF)
RCSMERGE = rcsmerge.o rcsutil.o rcsfnms.o rcsrev.o rcssyn.o rcslex.o
rcsmerge: $(RCSMERGE); cc -o rcsmerge $(RCSMERGE)
SCCSTORCS = sccstorcs.o
sccstorcs: $(SCCSTORCS); cc -o sccstorcs $(SCCSTORCS)
snoop: snoop.o
cc -o snoop snoop.o
PAIRTEST = rcsfnmsTST.o rcssyn.o rcslex.o
pairtest: $(PAIRTEST); cc -o pairtest $(PAIRTEST)
rcsfnmsTST.o: rcsfnms.c
cc -c -DPAIRTEST rcsfnms.c
mv rcsfnms.o rcsfnmsTST.o
REVTEST = rcsrevTST.o rcssyn.o rcslex.o
revtest: $(REVTEST); cc $(REVTEST)
echo "a.out ../TEST/rev.test.v <../TEST/rev.test.in >&! tmp" |csh
diff tmp ../TEST/rev.test.out
rm tmp
mv a.out revtest
rcsrevTST.o: rcsrev.c
cc -c -DREVTEST rcsrev.c
mv rcsrev.o rcsrevTST.o
SYNTEST = rcslex.o rcssynTST.o rcsrev.o
syntest: $(SYNTEST); cc $(SYNTEST)
echo "a.out ../TEST/syn.test >&! tmp" | csh
diff tmp ../TEST/syn.result
rm tmp
mv a.out syntest
rcssynTST.o: rcssyn.c
cc -c -DSYNDB -DCOMPAT2 -DSYNTEST rcssyn.c
mv rcssyn.o rcssynTST.o
lextest: rcslex.c
cc -DLEXDB rcslex.c
echo "a.out ../TEST/lex.test >&! tmp" | csh
diff tmp ../TEST/lex.result
rm tmp
mv a.out lextest
#rcsbase.h: RCS/rcsbase.h,v; co -r3 rcsbase.h
#rcsedit.c: RCS/rcsedit.c,v; co -r3 rcsedit.c
#rcsfcmp.c: RCS/rcsfcmp.c,v; co -r3 rcsfcmp.c
#rcsfnms.c: RCS/rcsfnms.c,v; co -r3 rcsfnms.c
#rcsgen.c: RCS/rcsgen.c,v; co -r3 rcsgen.c
#rcskeep.c: RCS/rcskeep.c,v; co -r3 rcskeep.c
#rcslex.c: RCS/rcslex.c,v; co -r3 rcslex.c
#rcsrev.c: RCS/rcsrev.c,v; co -r3 rcsrev.c
#rcssyn.c: RCS/rcssyn.c,v; co -r3 rcssyn.c
#rcsutil.c: RCS/rcsutil.c,v; co -r3 rcsutil.c
#ci.c: RCS/ci.c,v; co -r3 ci.c
#co.c: RCS/co.c,v; co -r3 co.c
#ident.c: RCS/ident.c,v; co -r3 ident.c
#merge: RCS/merge,v; co -r3 merge
#rcs.c: RCS/rcs.c,v; co -r3 rcs.c
#rcsdiff.c: RCS/rcsdiff.c,v; co -r3 rcsdiff.c
#rcsmerge.c: RCS/rcsmerge.c,v; co -r3 rcsmerge.c
#rlog.c: RCS/rlog.c,v; co -r3 rlog.c
#snoop.c: RCS/snoop.c,v; co -r3 snoop.c
#time.h: RCS/time.h,v; co -r1 time.h
#partime.c: RCS/partime.c,v; co -r1 partime.c
#maketime.c: RCS/maketime.c,v; co -r1 maketime.c