head	1.14;
access;
symbols;
locks; strict;
comment	@# @;


1.14
date	99.12.23.23.55.52;	author jbev;	state Exp;
branches;
next	1.13;

1.13
date	95.10.13.23.28.36;	author jbev;	state Exp;
branches;
next	1.12;

1.12
date	95.10.13.21.48.03;	author jbev;	state Exp;
branches;
next	1.11;

1.11
date	95.10.13.01.00.27;	author jbev;	state Exp;
branches;
next	1.10;

1.10
date	95.04.20.03.00.46;	author jbev;	state Exp;
branches;
next	1.9;

1.9
date	95.04.20.01.34.04;	author jbev;	state Exp;
branches;
next	1.8;

1.8
date	95.04.18.00.07.24;	author jbev;	state Exp;
branches;
next	1.7;

1.7
date	95.04.14.17.22.14;	author jbev;	state Exp;
branches;
next	1.6;

1.6
date	95.04.14.05.07.49;	author jbev;	state Exp;
branches;
next	1.5;

1.5
date	95.04.13.21.07.34;	author jbev;	state Exp;
branches;
next	1.4;

1.4
date	95.04.13.21.01.27;	author jbev;	state Exp;
branches;
next	1.3;

1.3
date	95.04.13.20.41.07;	author jbev;	state Exp;
branches;
next	1.2;

1.2
date	95.03.05.02.11.36;	author jbev;	state Exp;
branches;
next	1.1;

1.1
date	95.03.05.02.04.51;	author jbev;	state Exp;
branches;
next	;


desc
@Initial makefile for mpx.
@


1.14
log
@Added missing rcsclean to Main list
@
text
@#~!makefile for RCS
# Name:  makefile Part No.: _______-____r
#
# Copyright 1995 - J B Systems, Morrison, CO
#
# The recipient of this product specifically agrees not to distribute,
# disclose, or disseminate in any way, to any one, nor use for its own
# benefit, or the benefit of others, any information contained  herein
# without the expressed written consent of J B Systems.
#
#                     RESTRICTED RIGHTS LEGEND
#
# Use, duplication, or disclosure by the Government is  subject  to
# restriction  as  set forth in paragraph (b) (3) (B) of the Rights
# in Technical Data and Computer Software  Clause  in  DAR  7-104.9
# (a).
#

#ident	"$Id: makefile,v 1.13 1995/10/13 23:28:36 jbev Exp jbev $"

# $Log $
#

# Make parameters when using NBC on MPX
# Modified by J. Bevier, J B Systems for NASA port to operation
# on MPX operating systems with a non based C compiler.
#

ROOT = /
TARGET = /system/bin
SRCDIR = .
PREFIX = nb
INCLUDE = /system/nbinclude
SINCLUDE = $(INCLUDE)/sys
BIN = /system/bin
SBIN = /system/bin
UBIN = /system/bin
LIB = /system/bin
YBIN = /system/bin
CC = $(UBIN)/$(PREFIX)cc
CFLAGS = -DMPX# -G -L
CPP = $(LIB)/$(PREFIX)cpp
CPFLAGS = -M $(CFLAGS)
LD = $(UBIN)/$(PREFIX)cat
LDFLAGS = -Yrcsmap
LIBS = #-Kmy
LDLIBS = $(LIBS)#-Tbigfile
YACC = $(YBIN)/$(PREFIX)yacc
YFLAGS =
OWN = system
GRP = system
MAKEFILE = makefile

 COMPAT2 = 0
#COMPAT2 = 1
 RCSDIR = /system/bin
#RCSDIR = /usr/bin
 REMOVE = $(BIN)/rm -f
 LINK = $(CC)

# The herader files
HDRS = conf.h rcsbase.h

# The source files for all of the programs.
SRCS =	ci.c co.c ident.c maketime.c merge.c merger.c partime.c rcs.c \
	rcsclean.c rcsdiff.c rcsedit.c rcsfcmp.c rcsfnms.c rcsgen.c \
	rcskeep.c rcskeys.c rcslex.c rcsmap.c rcsmerge.c rcsrev.c rcssyn.c \
	rcsutil.c rlog.c

# Object files
OBJS =	ci.o co.o ident.o maketime.o merge.o merger.o partime.o rcs.o \
	rcsclean.o rcsdiff.o rcsedit.o rcsfcmp.o rcsfnms.o rcsgen.o \
	rcskeep.o rcskeys.o rcslex.o rcsmap.o rcsmerge.o rcsrev.o rcssyn.o \
	rcsutil.o rlog.o

# all commands
MAIN = ci co ident merge rcs rcsdiff rcsmerge rlog rcsclean

# default targets
ALL:	all
all:	$(MAIN)
	$(BIN)/echo $(MAIN) is up to date.

#$(MAIN):	$(MAKEFILE) $(OBJS)
#	$(CC) $(LDFLAGS) $(OBJS) -o $(MAIN)
#	$(BIN)/chmod 775 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@

CLEAN:  clean
clean:
	$(BIN)/rm -f $(OBJS)

CLOBBER: clobber
clobber: clean
	$(BIN)/rm -f $(MAIN)
	$(BIN)/rm -f *map

NEWLIB: newlib
newlib:
	$(BIN)/rm -f $(MAIN)
	$(BIN)/rm -f *map

DEPEND: depend
depend: $(SRCS) $(HDRS) $(MAKEFILE)
	$(BIN)/mkdep $(MAKEFILE) >dep.out;
	@@for i in $(SRCS); do \
	$(BIN)/echo "# Source file '$$i'" >> dep.out; \
	$(CPP) -I$(SRCDIR) $(CPFLAGS) $$i >> dep.out; \
	done;
	$(BIN)/echo "# End of dependencies" >> dep.out;
	$(BIN)/mv dep.out $(MAKEFILE);

COMPILE = $(CC) -c -I$(SRCDIR) $(CFLAGS)

.c.o:
	$(COMPILE) $<

INSTALL: install
install : all
	$(BIN)/cp $(MAIN) $(SBIN)
	$(BIN)/cp $(MAIN) /system/system

ci = ci.o rcslex.o rcssyn.o rcsgen.o rcsedit.o rcskeys.o rcsmap.o \
	rcsrev.o rcsutil.o rcsfnms.o partime.o maketime.o rcskeep.o \
	rcsfcmp.o
ci : $(ci)
	$(LINK) $(ci) $(LDLIBS) -Ycimap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

co = co.o rcslex.o rcssyn.o rcsgen.o rcsedit.o rcskeys.o rcsmap.o \
	rcsrev.o rcsutil.o rcsfnms.o partime.o maketime.o rcskeep.o
co : $(co)
	$(LINK) $(co) $(LDLIBS) -Ycomap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

ident = ident.o rcsmap.o
ident : $(ident)
	$(LINK) $(ident) $(LDLIBS) -Yidentmap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

merge = merge.o merger.o rcsfnms.o rcslex.o \
	rcsmap.o rcsrev.o rcssyn.o rcsutil.o \
	rcskeep.o rcskeys.o
merge : $(merge)
	$(LINK) $(merge) $(LDLIBS) -Ymergemap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

rlog = rlog.o rcslex.o rcsmap.o rcssyn.o rcsrev.o rcsutil.o partime.o \
	maketime.o rcsfnms.o rcskeep.o rcskeys.o
rlog : $(rlog)
	$(LINK) $(rlog) $(LDLIBS) -Yrlogmap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

rcs = rcs.o rcslex.o rcssyn.o rcsrev.o rcsutil.o rcsgen.o rcsedit.o rcskeys.o \
	rcsmap.o rcsfnms.o rcskeep.o
rcs : $(rcs)
	$(LINK) $(rcs) $(LDLIBS) -Yrcsmap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

rcsclean = rcsclean.o rcsedit.o rcsfcmp.o rcsfnms.o rcsgen.o rcskeys.o \
	rcslex.o rcsmap.o rcsrev.o rcssyn.o rcsutil.o rcskeep.o
rcsclean : $(rcsclean)
	$(LINK) $(rcsclean) $(LDLIBS) -Yrcscleanmap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

rcsdiff = rcsdiff.o rcsutil.o rcsfnms.o rcsmap.o rcsrev.o rcssyn.o rcslex.o \
	maketime.o partime.o rcskeep.o rcskeys.o
rcsdiff : $(rcsdiff)
	$(LINK) $(rcsdiff) $(LDLIBS) -Yrcsdiffmap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

rcsmerge = rcsmerge.o merger.o rcsutil.o rcsfnms.o rcsmap.o rcsrev.o rcssyn.o \
	rcslex.o rcskeep.o rcskeys.o
rcsmerge : $(rcsmerge)
	$(LINK) $(rcsmerge) $(LDLIBS) -Yrcsmergemap -o $@@
	$(BIN)/chmod 775 $@@
	$(BIN)/chgrp $(GRP) $@@
	$(BIN)/chown $(OWN) $@@

conf_h = conf.h

$(OBJS) : $(conf_h) rcsbase.h

# DO NOT DELETE THIS LINE -- the dependencies begin here
@


1.13
log
@Remove #'s from makefile.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.12 1995/10/13 21:48:03 jbev Exp jbev $"
d77 1
a77 1
MAIN = ci co ident merge rcs rcsdiff rcsmerge rlog
@


1.12
log
@Added newlib entry to just delete load modules.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.11 1995/10/13 01:00:27 jbev Exp jbev $"
d24 1
a24 1
# Make parameters when using NBC on UNIX
d86 1
a86 1
#	$(BIN)/chmod 755 $@@
d129 3
a131 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d137 3
a139 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d144 3
a146 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d153 3
a155 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d161 3
a163 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d169 3
a171 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d177 3
a179 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d185 3
a187 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
d193 3
a195 3
#	$(BIN)/chmod 755 $@@
#	$(BIN)/chgrp $(GRP) $@@
#	$(BIN)/chown $(OWN) $@@
@


1.11
log
@Copy files to system also.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.10 1995/04/20 03:00:46 jbev Exp jbev $"
d96 5
@


1.10
log
@Fixed for debug stuff.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.9 1995/04/20 01:34:04 jbev Exp jbev $"
d117 1
@


1.9
log
@Set -G and no -L for c options.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.8 1995/04/18 00:07:24 jbev Exp jbev $"
d41 1
a41 1
CFLAGS = -DMPX -G# -L
d47 1
a47 1
LDLIBS = $(LIBS)
@


1.8
log
@Fix umask call.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.7 1995/04/14 17:22:14 jbev Exp jbev $"
d41 1
a41 1
CFLAGS = -DMPX# -L -G -DMPX
@


1.7
log
@Add rm *map to clobber.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.6 1995/04/14 05:07:49 jbev Exp jbev $"
d41 1
a41 1
CFLAGS = -DMPX
@


1.6
log
@More fixes for MPX
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.5 1995/04/13 21:07:34 jbev Exp $"
d97 1
@


1.5
log
@conf.h was not a dependency.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.4 1995/04/13 21:01:27 jbev Exp jbev $"
d45 1
a45 1
LDFLAGS =
d59 1
d121 1
a121 1
	$(LINK) $(ci) $(LDLIBS) -o $@@
d129 1
a129 1
	$(LINK) $(co) $(LDLIBS) -o $@@
d136 1
a136 1
	$(LINK) $(ident) $(LDLIBS) -o $@@
d145 1
a145 1
	$(LINK) $(merge) $(LDLIBS) -o $@@
d153 1
a153 1
	$(LINK) $(rlog) $(LDLIBS) -o $@@
d161 1
a161 1
	$(LINK) $(rcs) $(LDLIBS) -o $@@
d169 1
a169 1
	$(LINK) $(rcsclean) $(LDLIBS) -o $@@
d177 1
a177 1
	$(LINK) $(rcsdiff) $(LDLIBS) -o $@@
d185 1
a185 1
	$(LINK) $(rcsmerge) $(LDLIBS) -o $@@
@


1.4
log
@More MPX mods
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.3 1995/04/13 20:41:07 jbev Exp jbev $"
a114 2

conf.h : 
@


1.3
log
@Modify for MPX make.
@
text
@d19 1
a19 1
#ident	"$Id: makefile,v 1.2 1995/04/13 17:49:11 jbev Exp jbev $"
d46 2
a47 1
LDLIBS =
a58 1
 INSTALL = $(BIN)/cp
d60 2
a61 13
 DIFFPREFIX = /system/bin/   # MPX diff
 DIFF = $(DIFFPREFIX)diff
 DIFF_FLAGS = -an# GNU diff
 DIFF_L = 1# GNU diff
 DIFF_SUCCESS = 0
 DIFF_FAILURE = 1
 DIFF_TROUBLE = 2
 DIFF3 = $(DIFF)3# GNU diff3
 DIFF3_A = 1# GNU diff 2.1 or later
 DIFF3_BIN = 1# GNU diff
 LINK = $(CC) $(LDFLAGS)

HDRS = diff.h cmpbuf.h config.h fnmatch.h getopt.h regex.h remap.h system.h 
d85 3
a87 4
	$(BIN)/chmod 755 $(MAIN)
	$(BIN)/chgrp $(GRP) $(MAIN)
	$(BIN)/chown $(OWN) $(MAIN)
	$(BIN)/touch $(MAIN)
d114 1
a114 1
	$(INSTALL) $(MAIN) $(SBIN)
a125 1
	$(BIN)/touch $@@
a133 1
	$(BIN)/touch $@@
a140 1
	$(BIN)/touch $@@
a149 1
	$(BIN)/touch $@@
a157 1
	$(BIN)/touch $@@
a165 1
	$(BIN)/touch $@@
a173 1
	$(BIN)/touch $@@
a181 1
	$(BIN)/touch $@@
a189 1
	$(BIN)/touch $@@
a195 1

@


1.2
log
@Correct LDFLAGS
@
text
@d1 2
a2 1
# $Id: make.mpx,v 1.1 1995/03/05 02:04:51 jbev Exp jbev $
d4 1
a4 8
# Modified by J. Bevier, J B Systems for NASA port to operation
# on MPX operating systems with a non based C compiler.
#
# Copyright (C) 1982, 1988, 1989 Walter Tichy
# Copyright 1990, 1991 by Paul Eggert
#   Distributed under license by the Free Software Foundation, Inc.
#
# This file is part of RCS.
d6 4
a9 4
# RCS is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
d11 1
a11 4
# RCS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
d13 4
a16 7
# You should have received a copy of the GNU General Public License
# along with RCS; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Report problems and direct all questions to:
#
#    jbev@@jbsys.com
d19 1
a19 2
# default target
default :: all
d21 2
a22 2
# See README for more information on the configuration section.
# ----- start of configuration section -----
d24 4
a27 3
#CC = cc
 CC = nbcc
#CC = cc -g# debug
d29 23
a51 2
#CFLAGS = -O2 -fomit-frame-pointer -m486
 CFLAGS = 
d55 4
a60 4
#DIFFPREFIX = /usr/bin/# GNU diff -- must be version 1.15 or later
#DIFFPREFIX = /bin/# traditional diff
#DIFFPREFIX = /usr/bin/# traditional diff (alternate name)

a61 2
#DIFF = $(DIFFPREFIX)rdiff# short for ``RCS diff'' on some hosts

a62 2
#DIFF_FLAGS = -n# traditional diff

a63 2
#DIFF_L = 0# traditional diff

a64 1
#DIFF_SUCCESS = EXIT_SUCCESS
a65 1
#DIFF_FAILURE = EXIT_FAILURE
d67 1
a67 9
#DIFF_TROUBLE = (EXIT_FAILURE*2)

 DIFF3 = /system/bin/diff3# traditional diff3
#DIFF3 = $(DIFF)3# GNU diff3
#DIFF3 = /usr/bin/diff3# traditional diff3
#DIFF3 = /usr/5lib/diff3prog# other aliases for traditional diff3
#DIFF3 = /usr/lib/diff3prog
#DIFF3 = /usr/lib/rdiff3

a68 2
#DIFF3_A = 0# all other diffs

a69 11
#DIFF3_BIN = 0# traditional diff

 EXECUTABLE_GROUP = bin# BSD unix installation
 EXECUTABLE_PERMISSIONS = -g $(EXECUTABLE_GROUP) -m 755 -o root# BSD unix installation
 INSTALL = install -c $(EXECUTABLE_PERMISSIONS)# BSD unix installation

 LDFLAGS =
#LDFLAGS = -s -N

 LDLIBS =

d72 1
a72 2
 LINT = lint -abchx# traditional and BSD lint
#LINT = lint# System V lint
d74 5
a78 1
 MAKE = make
d80 5
a84 29
 OTHER_OBJECT =

 RCSDIR = /system/bin
#RCSDIR = /usr/bin
#RCSDIR = /bin

 RCSPREFIX = $(RCSDIR)/
#RCSPREFIX =

#REMOVE = /system/bin/rm -f
 REMOVE = rm -f

SENDMAIL =# for impoverished hosts that lack electronic mail

 TESTPREFIX =

 o = .o
#o = .s# Minix/PC with ACK cc

 x =

# On non-Unix hosts you must manually create and edit conf.h from conf.heg.

# ----- end of configuration section -----
# You shouldn't have to change anything past this point.

# Avoid brain damage in some versions of 'make'.
#SHELL = /system/bin/sh
 SHELL = /bin/sh
d87 1
a87 3
RCSCOMMANDS = ci$x co$x ident$x merge$x rcs$x rcsdiff$x rcsmerge$x rlog$x

all :: $(RCSCOMMANDS)
d89 38
a126 20
install :: all
	$(INSTALL) ci$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) co$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) ident$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) merge$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) rcs$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) rcsdiff$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) rcsmerge$x $(DESTDIR)$(RCSDIR)
	$(INSTALL) rlog$x $(DESTDIR)$(RCSDIR)

# Install RCS and (if applicable) GNU diff before running these tests.
# To test RCS before installing it, see README.
RCSTEST = PATH=$(RCSDIR):$(DIFFPREFIX).:$$PATH sh $(TESTPREFIX)rcstest
installtest ::
	$(RCSTEST)
installdebug ::
	$(RCSTEST) -v

clean ::
	$(REMOVE) *$o conf.h rcsbase.h $(RCSCOMMANDS) rcsclean$x
d130 4
a133 4
ci = ci$o rcslex$o rcssyn$o rcsgen$o rcsedit$o rcskeys$o rcsmap$o \
	rcsrev$o rcsutil$o rcsfnms$o partime$o maketime$o rcskeep$o \
	rcsfcmp$o $(OTHER_OBJECT)
ci$x : $(ci)
d135 8
a142 4

co = co$o rcslex$o rcssyn$o rcsgen$o rcsedit$o rcskeys$o rcsmap$o \
	rcsrev$o rcsutil$o rcsfnms$o partime$o maketime$o rcskeep$o $(OTHER_OBJECT)
co$x : $(co)
d144 4
d149 2
a150 2
ident = ident$o rcsmap$o $(OTHER_OBJECT)
ident$x : $(ident)
d152 9
a160 5

merge = merge$o merger$o rcsfnms$o rcslex$o \
	rcsmap$o rcsrev$o rcssyn$o rcsutil$o \
	rcskeep$o rcskeys$o $(OTHER_OBJECT)
merge$x : $(merge)
d162 8
a169 4

rlog = rlog$o rcslex$o rcsmap$o rcssyn$o rcsrev$o rcsutil$o partime$o \
	maketime$o rcsfnms$o rcskeep$o rcskeys$o $(OTHER_OBJECT)
rlog$x : $(rlog)
d171 8
a178 4

rcs = rcs$o rcslex$o rcssyn$o rcsrev$o rcsutil$o rcsgen$o rcsedit$o rcskeys$o \
	rcsmap$o rcsfnms$o rcskeep$o $(OTHER_OBJECT)
rcs$x : $(rcs)
d180 8
a187 4

rcsclean = rcsclean$o rcsedit$o rcsfcmp$o rcsfnms$o rcsgen$o rcskeys$o \
	rcslex$o rcsmap$o rcsrev$o rcssyn$o rcsutil$o rcskeep$o $(OTHER_OBJECT)
rcsclean$x : $(rcsclean)
d189 8
a196 4

rcsdiff = rcsdiff$o rcsutil$o rcsfnms$o rcsmap$o rcsrev$o rcssyn$o rcslex$o \
	maketime$o partime$o rcskeep$o rcskeys$o $(OTHER_OBJECT)
rcsdiff$x : $(rcsdiff)
d198 8
a205 4

rcsmerge = rcsmerge$o merger$o rcsutil$o rcsfnms$o rcsmap$o rcsrev$o rcssyn$o \
	rcslex$o rcskeep$o rcskeys$o $(OTHER_OBJECT)
rcsmerge$x : $(rcsmerge)
d207 4
d212 1
a212 4
SOURCE=	ci.c co.c ident.c maketime.c merge.c merger.c partime.c rcs.c \
	rcsclean.c rcsdiff.c rcsedit.c rcsfcmp.c rcsfnms.c rcsgen.c \
	rcskeep.c rcskeys.c rcslex.c rcsmap.c rcsmerge.c rcsrev.c rcssyn.c \
	rcsutil.c rlog.c
d214 1
a214 4
OBJECT=	ci$o co$o ident$o maketime$o merge$o merger$o partime$o rcs$o \
	rcsclean$o rcsdiff$o rcsedit$o rcsfcmp$o rcsfnms$o rcsgen$o \
	rcskeep$o rcskeys$o rcslex$o rcsmap$o rcsmerge$o rcsrev$o rcssyn$o \
	rcsutil$o rlog$o
d216 1
a216 2
lint :: conf.h
	$(LINT) $(CC_D) -Dlint=1 $(SOURCE)
a217 2
conf_h = conf.h
$(OBJECT) : $(conf_h) rcsbase.h
@


1.1
log
@Initial revision
@
text
@d1 1
a1 1
# $Id: make.mpx,v 1.1 1995/03/04 18:10:23 jbev Exp jbev $
d85 2
a86 1
 LDFLAGS = -s -N
@
