diff options
Diffstat (limited to 'xc/unsupported/test/InsPEX/tools')
56 files changed, 53 insertions, 381 deletions
diff --git a/xc/unsupported/test/InsPEX/tools/inspector/Makefile b/xc/unsupported/test/InsPEX/tools/inspector/Makefile deleted file mode 100644 index e1b5dd918..000000000 --- a/xc/unsupported/test/InsPEX/tools/inspector/Makefile +++ /dev/null @@ -1,89 +0,0 @@ -# $XConsortium: Makefile,v 5.3 91/07/08 18:18:28 hersh Exp $ -################################################################### -# Copyright (c) 1989, 1990, 1991,1990 by Sun Microsystems, Inc. and the X Consortium. -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and its -# documentation for any purpose and without fee is hereby granted, -# provided that the above copyright notice appear in all copies and that -# both that copyright notice and this permission notice appear in -# supporting documentation, and that the names of Sun Microsystems -# and the X Consortium not be used in advertising or publicity -# pertaining to distribution of the software without specific, written -# prior permission. -# -# SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -# SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -# SOFTWARE. -# -################################################################## - -# Makefile for Inspector, the InsPEX image comparison tool -# note: give CPPFLAGS=-DBUG to work around old server bits_per_rgb bug - -# Destination directory for objects and the executable -INSPEXDEST = /tmp/inspex_test -DESTBIN = $(INSPEXDEST)/bin - -# X11 libs and include directory -XVIEWHOME = /usr/openwin - -# required libraries for XView and Athena Widgets: -XVLIBS = -lxview -lolgx -lX11 -lm -AWLIBS = -lXaw -lXmu -lXt -lXext -lX11 -lm - -CFLAGS= -g -I$(XVIEWHOME)/share/include $(CPPFLAGS) - -#LDFLAGS=-Bstatic -L$(XVIEWHOME)/lib $(XVLIBS) -LDFLAGS=-L$(XVIEWHOME)/lib $(XVLIBS) - -#AW_LDFLAGS=-Bstatic -L$(XVIEWHOME)/lib $(AWLIBS) -AW_LDFLAGS=$(AWLIBS) - -SRC = Makefile inspector.c imagelib.c imagelib.h portable.h \ - toolkit.c toolkit.h toolkitaw.c toolkitaw.h - -OBJ = $(DESTBIN)/inspector.o $(DESTBIN)/toolkit.o $(DESTBIN)/imagelib.o -AWOBJ = $(DESTBIN)/awinspector.o $(DESTBIN)/toolkitaw.o $(DESTBIN)/imagelib.o - -src: $(SRC) - -copy: - cp $(SRC) $(DESTDIR) - -inspector: $(DESTBIN)/inspector - -$(DESTBIN)/imagelib.o: imagelib.c imagelib.h portable.h - $(CC) $(CFLAGS) -o $@ -c imagelib.c - -$(DESTBIN)/toolkit.o: toolkit.c toolkit.h - $(CC) $(CFLAGS) -o $@ -c toolkit.c - -$(DESTBIN)/inspector.o: inspector.c toolkit.h imagelib.h - $(CC) $(CFLAGS) -o $@ -c inspector.c - -$(DESTBIN)/inspector: $(OBJ) - $(CC) -o $(DESTBIN)/inspector $(OBJ) $(LDFLAGS) - -# targets for Athena Widgets version: uses different toolkit files, -# and a separate compilation of inspector.c (awinspector.o) -# using the different toolkit header file. - -awinspector: $(DESTBIN)/awinspector - -$(DESTBIN)/toolkitaw.o: toolkitaw.c toolkitaw.h - $(CC) $(CFLAGS) -o $@ -c toolkitaw.c - -$(DESTBIN)/awinspector.o: inspector.c toolkitaw.h imagelib.h - $(CC) -DATHENA $(CFLAGS) -o $@ -c inspector.c - -$(DESTBIN)/awinspector: $(AWOBJ) - $(CC) -o $@ $(AWOBJ) $(AW_LDFLAGS) - - - diff --git a/xc/unsupported/test/InsPEX/tools/inspector/imagelib.c b/xc/unsupported/test/InsPEX/tools/inspector/imagelib.c index 9dadea89a..337b88f3d 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/imagelib.c +++ b/xc/unsupported/test/InsPEX/tools/inspector/imagelib.c @@ -1,4 +1,4 @@ -/* $XConsortium: imagelib.c,v 5.1 91/02/16 09:59:41 rws Exp $ */ +/* $XConsortium: imagelib.c,v 5.2 94/04/17 20:46:11 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/imagelib.h b/xc/unsupported/test/InsPEX/tools/inspector/imagelib.h index 420c9f33d..4c71bbdc1 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/imagelib.h +++ b/xc/unsupported/test/InsPEX/tools/inspector/imagelib.h @@ -1,4 +1,4 @@ -/* $XConsortium: imagelib.h,v 5.1 91/02/16 09:59:42 rws Exp $ */ +/* $XConsortium: imagelib.h,v 5.2 94/04/17 20:46:11 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/inspector.c b/xc/unsupported/test/InsPEX/tools/inspector/inspector.c index c749273bc..dc308ae0c 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/inspector.c +++ b/xc/unsupported/test/InsPEX/tools/inspector/inspector.c @@ -1,4 +1,4 @@ -/* $XConsortium: inspector.c,v 5.2 91/05/29 18:13:57 hersh Exp $ */ +/* $XConsortium: inspector.c,v 5.3 94/04/17 20:46:12 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/portable.h b/xc/unsupported/test/InsPEX/tools/inspector/portable.h index 87d18ca50..cdddf86cc 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/portable.h +++ b/xc/unsupported/test/InsPEX/tools/inspector/portable.h @@ -1,5 +1,5 @@ -/* $XConsortium: portable.h,v 5.1 91/02/16 09:59:43 rws Exp $ */ +/* $XConsortium: portable.h,v 5.2 94/04/17 20:46:12 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/toolkit.c b/xc/unsupported/test/InsPEX/tools/inspector/toolkit.c index 541a69f8b..3948ac983 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/toolkit.c +++ b/xc/unsupported/test/InsPEX/tools/inspector/toolkit.c @@ -1,5 +1,5 @@ -/* $XConsortium: toolkit.c,v 5.1 91/02/16 09:59:37 rws Exp $ */ +/* $XConsortium: toolkit.c,v 5.2 94/04/17 20:46:13 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/toolkit.h b/xc/unsupported/test/InsPEX/tools/inspector/toolkit.h index f6204b941..ce4796caa 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/toolkit.h +++ b/xc/unsupported/test/InsPEX/tools/inspector/toolkit.h @@ -1,5 +1,5 @@ -/* $XConsortium: toolkit.h,v 5.1 91/02/16 09:59:38 rws Exp $ */ +/* $XConsortium: toolkit.h,v 5.2 94/04/17 20:46:14 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.c b/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.c index f326f840d..bee1ff533 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.c +++ b/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.c @@ -1,4 +1,4 @@ -/* $XConsortium: toolkitaw.c,v 5.8 91/05/30 19:07:37 converse Exp $ */ +/* $XConsortium: toolkitaw.c,v 5.9 94/04/17 20:46:14 converse Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.h b/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.h index 59a3900b4..b6875d92a 100644 --- a/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.h +++ b/xc/unsupported/test/InsPEX/tools/inspector/toolkitaw.h @@ -1,4 +1,4 @@ -/* $XConsortium: toolkitaw.h,v 5.2 91/05/30 19:06:17 converse Exp $ */ +/* $XConsortium: toolkitaw.h,v 5.3 94/04/17 20:46:15 converse Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/Makefile b/xc/unsupported/test/InsPEX/tools/newt/Makefile deleted file mode 100644 index 85d26776c..000000000 --- a/xc/unsupported/test/InsPEX/tools/newt/Makefile +++ /dev/null @@ -1,80 +0,0 @@ -# $XConsortium: Makefile,v 5.3 91/02/16 09:59:48 rws Exp $ -################################################################### -# Copyright (c) 1989, 1990, 1991 by Sun Microsystems, Inc. and the X Consortium. -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and its -# documentation for any purpose and without fee is hereby granted, -# provided that the above copyright notice appear in all copies and that -# both that copyright notice and this permission notice appear in -# supporting documentation, and that the names of Sun Microsystems -# and the X Consortium not be used in advertising or publicity -# pertaining to distribution of the software without specific, written -# prior permission. -# -# SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -# SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -# SOFTWARE. -# -################################################################## - - -# Makefile for Newt library and ipp (interpreter pre-processor). -# Default target is to make both, and clean up intermediate files. - -#destination directory for objects, intermediate files, and the libnewt.a -# library (or destination directory for a "copy"). -DESTDIR = . -# Newt directory, where "make" is performed -# (needed because lex and yacc require a cd) -MAKEDIR = . - -# default is empty for this user-configuration flag: -I_CFLAGS = - -SRC = Makefile config.h debugger.c debugger.h interpret.c interpret.h \ - ipp.c looper.h looper.yacc looper.lex var.c var.h - -CFLAGS = -g $(I_CFLAGS) -I$(MAKEDIR) -OBJS = $(DESTDIR)/y.tab.o $(DESTDIR)/var.o $(DESTDIR)/interpret.o $(DESTDIR)/debugger.o - -default: $(DESTDIR)/libnewt.a $(DESTDIR)/ipp clean - -src: $(SRC) - -copy: - cp $(SRC) $(DESTDIR) - -$(DESTDIR)/libnewt.a: $(OBJS) - ar cr $@ $(OBJS) - ranlib $@ - -$(DESTDIR)/lex.yy.c: looper.lex - cd $(DESTDIR); lex $(MAKEDIR)/looper.lex - -$(DESTDIR)/y.tab.c: looper.yacc - cd $(DESTDIR); yacc $(MAKEDIR)/looper.yacc - -$(DESTDIR)/y.tab.o: $(DESTDIR)/y.tab.c $(DESTDIR)/lex.yy.c var.h looper.h \ -debugger.h interpret.h - cc $(CFLAGS) -o $@ -c $(DESTDIR)/y.tab.c - -$(DESTDIR)/var.o: var.c var.h looper.h - cc $(CFLAGS) -o $@ -c var.c - -$(DESTDIR)/interpret.o: config.h interpret.c looper.h - cc $(CFLAGS) -o $@ -c interpret.c - -$(DESTDIR)/debugger.o: debugger.c debugger.h looper.h - cc $(CFLAGS) -o $@ -c debugger.c - -$(DESTDIR)/ipp: ipp.c config.h - cc $(CFLAGS) -o $(DESTDIR)/ipp ipp.c - -clean: - rm -f $(DESTDIR)/lex.yy.c $(DESTDIR)/y.tab.c $(OBJS) diff --git a/xc/unsupported/test/InsPEX/tools/newt/NewTvararg.h b/xc/unsupported/test/InsPEX/tools/newt/NewTvararg.h index 69fb3c394..92739781d 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/NewTvararg.h +++ b/xc/unsupported/test/InsPEX/tools/newt/NewTvararg.h @@ -1,5 +1,5 @@ -/* $XConsortium$ */ +/* $XConsortium: NewTvararg.h,v 5.2 91/02/16 09:59:49 rws Exp $ */ /* * Copyright (c) 1988-1991 by Sun Microsystems, Inc. diff --git a/xc/unsupported/test/InsPEX/tools/newt/config.h b/xc/unsupported/test/InsPEX/tools/newt/config.h index bfcb29c87..91b8eb0f9 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/config.h +++ b/xc/unsupported/test/InsPEX/tools/newt/config.h @@ -1,5 +1,5 @@ -/* $XConsortium: config.h,v 5.1 91/02/16 09:59:50 rws Exp $ */ +/* $XConsortium: config.h,v 5.2 94/04/17 20:46:17 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/debugger.c b/xc/unsupported/test/InsPEX/tools/newt/debugger.c index 019d21aad..6fb5cc182 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/debugger.c +++ b/xc/unsupported/test/InsPEX/tools/newt/debugger.c @@ -1,6 +1,6 @@ -/* $XConsortium: debugger.c,v 5.3 91/07/01 09:04:44 rws Exp $ */ +/* $XConsortium: debugger.c,v 5.4 94/04/17 20:46:18 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/debugger.h b/xc/unsupported/test/InsPEX/tools/newt/debugger.h index 4ed6197ea..7b7fcee0f 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/debugger.h +++ b/xc/unsupported/test/InsPEX/tools/newt/debugger.h @@ -1,5 +1,5 @@ -/* $XConsortium: debugger.h,v 5.1 91/02/16 09:59:52 rws Exp $ */ +/* $XConsortium: debugger.h,v 5.2 94/04/17 20:46:19 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/interpret.c b/xc/unsupported/test/InsPEX/tools/newt/interpret.c index a65cb63a3..5cf9a1599 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/interpret.c +++ b/xc/unsupported/test/InsPEX/tools/newt/interpret.c @@ -1,5 +1,5 @@ -/* $XConsortium: interpret.c,v 5.1 91/02/16 09:59:53 rws Exp $ */ +/* $XConsortium: interpret.c,v 5.2 94/04/17 20:46:19 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/interpret.h b/xc/unsupported/test/InsPEX/tools/newt/interpret.h index 87fa82ce9..07e8fb745 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/interpret.h +++ b/xc/unsupported/test/InsPEX/tools/newt/interpret.h @@ -1,5 +1,5 @@ -/* $XConsortium: interpret.h,v 5.1 91/02/16 09:59:54 rws Exp $ */ +/* $XConsortium: interpret.h,v 5.2 94/04/17 20:46:20 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/ipp.c b/xc/unsupported/test/InsPEX/tools/newt/ipp.c index 273885ca6..6e95eb344 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/ipp.c +++ b/xc/unsupported/test/InsPEX/tools/newt/ipp.c @@ -1,7 +1,7 @@ -/* $XConsortium: ipp.c,v 5.2 92/02/25 10:16:07 mor Exp $ */ +/* $XConsortium: ipp.c,v 5.3 94/04/17 20:46:20 mor Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/looper.h b/xc/unsupported/test/InsPEX/tools/newt/looper.h index 72bd68f63..70540ffc0 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/looper.h +++ b/xc/unsupported/test/InsPEX/tools/newt/looper.h @@ -1,5 +1,5 @@ -/* $XConsortium: looper.h,v 5.1 91/02/16 09:59:56 rws Exp $ */ +/* $XConsortium: looper.h,v 5.2 94/04/17 20:46:21 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/looper.lex b/xc/unsupported/test/InsPEX/tools/newt/looper.lex index 169e0c162..b40c751f7 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/looper.lex +++ b/xc/unsupported/test/InsPEX/tools/newt/looper.lex @@ -1,4 +1,4 @@ -/* $XConsortium: looper.lex,v 5.1 91/02/16 09:59:57 rws Exp $ */ +/* $XConsortium: looper.lex,v 5.2 94/04/17 20:46:22 rws Exp $ */ /* copyright notice at the end of file */ /*looper.lex: scanner rules for Newt */ diff --git a/xc/unsupported/test/InsPEX/tools/newt/looper.yacc b/xc/unsupported/test/InsPEX/tools/newt/looper.yacc index d70c9a3f4..57d9ebac5 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/looper.yacc +++ b/xc/unsupported/test/InsPEX/tools/newt/looper.yacc @@ -1,5 +1,5 @@ -/* $XConsortium: looper.yacc,v 5.4 91/11/26 14:42:32 hersh Exp $ */ +/* $XConsortium: looper.yacc,v 5.5 94/04/17 20:46:22 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/newt.man b/xc/unsupported/test/InsPEX/tools/newt/newt.man index 072b788a6..3575f1dbe 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/newt.man +++ b/xc/unsupported/test/InsPEX/tools/newt/newt.man @@ -1,4 +1,4 @@ -.\" $XConsortium: newt.man,v 5.3 94/04/11 16:03:39 matt Exp $ +.\" $XConsortium: newt.man,v 5.4 94/04/17 20:46:25 matt Exp $ .\" .\" Copyright (c) 1989, 1990, 1991 by Sun Microsystems, Inc. and the X Consortium. .\" diff --git a/xc/unsupported/test/InsPEX/tools/newt/var.c b/xc/unsupported/test/InsPEX/tools/newt/var.c index ce00eac07..0e770ab45 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/var.c +++ b/xc/unsupported/test/InsPEX/tools/newt/var.c @@ -1,5 +1,5 @@ -/* $XConsortium: var.c,v 5.1 91/02/16 09:59:59 rws Exp $ */ +/* $XConsortium: var.c,v 5.2 94/04/17 20:46:26 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/newt/var.h b/xc/unsupported/test/InsPEX/tools/newt/var.h index 68407cc98..8a91d681e 100644 --- a/xc/unsupported/test/InsPEX/tools/newt/var.h +++ b/xc/unsupported/test/InsPEX/tools/newt/var.h @@ -1,4 +1,4 @@ -/* $XConsortium: var.h,v 5.1 91/02/16 10:00:00 rws Exp $ */ +/* $XConsortium: var.h,v 5.2 94/04/17 20:46:27 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/Makefile b/xc/unsupported/test/InsPEX/tools/pexint/Makefile deleted file mode 100644 index 9fb7ea5be..000000000 --- a/xc/unsupported/test/InsPEX/tools/pexint/Makefile +++ /dev/null @@ -1,159 +0,0 @@ - -# $XConsortium: Makefile,v 5.7 93/01/04 18:18:39 hersh Exp $ -################################################################### -# Copyright (c) 1989, 1990, 1991,1990 by Sun Microsystems, Inc. and the X Consortium. -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and its -# documentation for any purpose and without fee is hereby granted, -# provided that the above copyright notice appear in all copies and that -# both that copyright notice and this permission notice appear in -# supporting documentation, and that the names of Sun Microsystems -# and the X Consortium not be used in advertising or publicity -# pertaining to distribution of the software without specific, written -# prior permission. -# -# SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT -# SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -# SOFTWARE. -# -################################################################## - - -# Makefile for pexint, the PEX interpreter and libinspex.a, -# for the InsPEX test suite -# note: give CPPFLAGS=-DBUG to work around SunPEX bits_per_rgb bug -# give CPPFLAGS=-DNEWT to compile the interpreter - -# destination directory for objects and intermediate C files of pexint -DESTBIN = $(INSPEXDEST)/bin -# destination directory for objects of libinspex.a -DESTLIB = $(INSPEXDEST)/lib -# directories for PEX include and library files -PEXINCDIR = /home/`hostname`/pex/include -PEXLIBDIR = /home/`hostname`/pex/lib -# these flags are for any specialized compile flags; empty by default -I_CFLAGS = -I_LDFLAGS = -#directory for Xlib include and library files - default -# to same as for PEX. -XINCDIR = $(PEXINCDIR) -XLIBDIR = $(PEXLIBDIR) - -DEBUGOPT = -g -IPP = $(DESTBIN)/ipp -SRCDIR = $$INSPEXHOME/tools/pexint -NEWTDIR = $$INSPEXHOME/tools/newt -CFLAGS = $(DEBUGOPT) $(I_CFLAGS) $(CPPFLAGS) -I$(XINCDIR) -I$(PEXINCDIR) -I$(SRCDIR) -LDFLAGS = $(DEBUGOPT) $(I_LDFLAGS) -L$(PEXLIBDIR) -L$(XLIBDIR) -LIBS = ../../../../lib/PEX/libphigs.a -lX11 -lm -ll -lXext - -SRC = Makefile NewTvararg.h computils.c computils.h computils.m \ - config.h datautils.c datautils.h datautils.m imath.h \ - logmsg.c logmsg.h logmsg.m pexapi.h pexapi.k pexapi.m \ - pixutils.c pixutils.h pixutils.m portable.h \ - testutils.c testutils.h testutils.m \ - utility.c utility.h utility.k utility.m \ - xfutils.c xfutils.h xfutils.m xlib.h xlib.k xlib.m - -PEXINTOBJS = $(DESTBIN)/libnewt.a $(DESTBIN)/interface.o $(DESTBIN)/Ipexapi.o \ - $(DESTBIN)/Idatautils.o $(DESTBIN)/Iutility.o $(DESTBIN)/Ixlib.o \ - $(DESTBIN)/computils.o $(DESTBIN)/datautils.o \ - $(DESTBIN)/utility.o $(DESTBIN)/pixutils.o $(DESTBIN)/xfutils.o \ - $(DESTBIN)/testutils.o $(DESTBIN)/logmsg.o - -LIBINSPEXOBJS = \ - $(DESTLIB)/computils.o $(DESTLIB)/datautils.o \ - $(DESTLIB)/utility.o $(DESTLIB)/pixutils.o $(DESTLIB)/xfutils.o \ - $(DESTLIB)/testutils.o $(DESTLIB)/logmsg.o - - -pexint: $(DESTBIN)/pexint - -libinspex.a: $(DESTLIB)/libinspex.a - -src: $(SRC) - -copy: - cp $(SRC) $(DESTDIR) - -$(DESTBIN)/pexint: $(PEXINTOBJS) - cc -o $@ $(LDFLAGS) $(PEXINTOBJS) $(LIBS) - -$(DESTLIB)/libinspex.a: $(LIBINSPEXOBJS) - ar cr $@ $(LIBINSPEXOBJS) - ranlib $@ - -$(DESTBIN)/interface.c: testutils.m xfutils.m computils.m logmsg.m pixutils.m \ -xfutils.h testutils.h computils.h logmsg.h pixutils.h portable.h \ -$(DESTBIN)/Ipexapi.c $(DESTBIN)/Idatautils.c \ -$(DESTBIN)/Iutility.c $(DESTBIN)/Ixlib.c $(IPP) - cat testutils.m xfutils.m computils.m logmsg.m pixutils.m > inspexint.m - cat testutils.h xfutils.h computils.h logmsg.h pixutils.h > inspexint.h - $(IPP) -n -i inspexint.h -u Ipexapi \ - -u Idatautils -u Iutility \ - -u Ixlib -l $(DESTBIN)/interface inspexint.m - -$(DESTBIN)/Ipexapi.c: pexapi.m pexapi.h pexapi.k $(IPP) - $(IPP) -n -k pexapi.k -i pexapi.h -l $(DESTBIN)/Ipexapi pexapi.m - -$(DESTBIN)/Idatautils.c: datautils.m datautils.h $(IPP) - $(IPP) -n -i datautils.h -l $(DESTBIN)/Idatautils datautils.m - -$(DESTBIN)/Iutility.c: utility.m utility.k utility.h $(IPP) - $(IPP) -n -k utility.k -i utility.h -l $(DESTBIN)/Iutility utility.m - -$(DESTBIN)/Ixlib.c: xlib.m xlib.k xlib.h $(IPP) - $(IPP) -n -k xlib.k -i xlib.h -l $(DESTBIN)/Ixlib xlib.m - -$(DESTBIN)/interface.o: config.h $(DESTBIN)/interface.c inspexint.h - cc $(CFLAGS) -o $@ -c $(DESTBIN)/interface.c - -$(DESTBIN)/pixutils.o $(DESTLIB)/pixutils.o: pixutils.c pixutils.h logmsg.h portable.h - cc $(CFLAGS) -o $@ -c pixutils.c - -$(DESTBIN)/utility.o $(DESTLIB)/utility.o: utility.c utility.h - cc $(CFLAGS) -o $@ -c utility.c - -$(DESTBIN)/xfutils.o $(DESTLIB)/xfutils.o: xfutils.c imath.h logmsg.h xfutils.h - cc $(CFLAGS) -o $@ -c xfutils.c - -$(DESTBIN)/testutils.o $(DESTLIB)/testutils.o: testutils.c testutils.h NewTvararg.h imath.h pixutils.h logmsg.h portable.h - cc $(CFLAGS) -o $@ -c testutils.c - -$(DESTBIN)/datautils.o $(DESTLIB)/datautils.o: datautils.c datautils.h NewTvararg.h - cc $(CFLAGS) -o $@ -c datautils.c - -$(DESTBIN)/logmsg.o $(DESTLIB)/logmsg.o: logmsg.c logmsg.h - cc $(CFLAGS) -o $@ -c logmsg.c - -$(DESTBIN)/computils.o $(DESTLIB)/computils.o: computils.c computils.h logmsg.h imath.h NewTvararg.h - cc $(CFLAGS) -o $@ -c computils.c - -$(DESTBIN)/Ipexapi.o: config.h $(DESTBIN)/Ipexapi.c - cc $(CFLAGS) -o $@ -c $(DESTBIN)/Ipexapi.c - -$(DESTBIN)/Iutility.o: config.h $(DESTBIN)/Iutility.c - cc $(CFLAGS) -o $@ -c $(DESTBIN)/Iutility.c - -$(DESTBIN)/Ixlib.o: config.h $(DESTBIN)/Ixlib.c - cc $(CFLAGS) -o $@ -c $(DESTBIN)/Ixlib.c - -$(DESTBIN)/Idatautils.o: config.h $(DESTBIN)/Idatautils.c - cc $(CFLAGS) -o $@ -c $(DESTBIN)/Idatautils.c - -$(DESTBIN)/libnewt.a: - cd $(NEWTDIR); \ - make DESTDIR=$(DESTBIN) MAKEDIR=$(NEWTDIR) $(DESTBIN)/libnewt.a - -$(DESTBIN)/ipp: - cd $(NEWTDIR) ; \ - make DESTDIR=$(DESTBIN) MAKEDIR=$(NEWTDIR) $(DESTBIN)/ipp -clean: - rm -f $(DESTBIN)/interface.[cho] core $(DESTBIN)/I*.[cho] - diff --git a/xc/unsupported/test/InsPEX/tools/pexint/NewTvararg.h b/xc/unsupported/test/InsPEX/tools/pexint/NewTvararg.h index 4c6215f76..663606431 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/NewTvararg.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/NewTvararg.h @@ -1,4 +1,4 @@ -/* $XConsortium: NewTvararg.h,v 5.1 91/02/16 10:00:31 rws Exp $ */ +/* $XConsortium: NewTvararg.h,v 5.2 94/04/17 20:46:28 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/computils.c b/xc/unsupported/test/InsPEX/tools/pexint/computils.c index c28f12703..f9b6cda3d 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/computils.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/computils.c @@ -1,4 +1,4 @@ -/* $XConsortium: computils.c,v 5.4 91/07/24 18:43:05 hersh Exp $ */ +/* $XConsortium: computils.c,v 5.5 94/04/17 20:46:29 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/computils.h b/xc/unsupported/test/InsPEX/tools/pexint/computils.h index bf366bfe7..f8aee9b52 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/computils.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/computils.h @@ -1,5 +1,5 @@ -/* $XConsortium: computils.h,v 5.1 91/02/16 10:00:28 rws Exp $ */ +/* $XConsortium: computils.h,v 5.2 94/04/17 20:46:30 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/computils.m b/xc/unsupported/test/InsPEX/tools/pexint/computils.m index 004c17cad..645151799 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/computils.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/computils.m @@ -1,5 +1,5 @@ -/* $XConsortium: computils.m,v 5.1 91/02/16 10:00:29 rws Exp $ */ +/* $XConsortium: computils.m,v 5.2 94/04/17 20:46:30 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/config.h b/xc/unsupported/test/InsPEX/tools/pexint/config.h index 86804e6c4..ba7fb6465 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/config.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/config.h @@ -1,5 +1,5 @@ -/* $XConsortium: config.h,v 5.1 91/02/16 10:00:16 rws Exp $ */ +/* $XConsortium: config.h,v 5.2 94/04/17 20:46:31 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/datautils.c b/xc/unsupported/test/InsPEX/tools/pexint/datautils.c index 18566c260..ee6e95cfb 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/datautils.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/datautils.c @@ -1,5 +1,5 @@ -/* $XConsortium: datautils.c,v 5.2 91/07/24 18:41:05 hersh Exp $ */ +/* $XConsortium: datautils.c,v 5.3 94/04/17 20:46:31 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/datautils.h b/xc/unsupported/test/InsPEX/tools/pexint/datautils.h index 225b67ccb..282c52f56 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/datautils.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/datautils.h @@ -1,5 +1,5 @@ -/* $XConsortium: datautils.h,v 5.2 91/07/24 18:41:32 hersh Exp $ */ +/* $XConsortium: datautils.h,v 5.3 94/04/17 20:46:32 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/datautils.m b/xc/unsupported/test/InsPEX/tools/pexint/datautils.m index b6128e7d7..5fb24bfc7 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/datautils.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/datautils.m @@ -1,5 +1,5 @@ -/* $XConsortium: datautils.m,v 5.2 91/07/24 18:39:19 hersh Exp $ */ +/* $XConsortium: datautils.m,v 5.3 94/04/17 20:46:33 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/imath.h b/xc/unsupported/test/InsPEX/tools/pexint/imath.h index ba8ca18b2..55fb67ca1 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/imath.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/imath.h @@ -1,5 +1,5 @@ -/* $XConsortium: imath.h,v 5.1 91/02/16 10:00:17 rws Exp $ */ +/* $XConsortium: imath.h,v 5.2 94/04/17 20:46:33 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.c b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.c index 271eed584..95c5db53e 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.c @@ -1,5 +1,5 @@ -/* $XConsortium: logmsg.c,v 5.1 91/02/16 10:00:17 rws Exp $ */ +/* $XConsortium: logmsg.c,v 5.2 94/04/17 20:46:34 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.h b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.h index ce6ed6d55..48e18339c 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.h @@ -1,5 +1,5 @@ -/* $XConsortium: logmsg.h,v 5.1 91/02/16 10:00:15 rws Exp $ */ +/* $XConsortium: logmsg.h,v 5.2 94/04/17 20:46:34 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.m b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.m index e64a3ac5a..09701305c 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/logmsg.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/logmsg.m @@ -1,5 +1,5 @@ -/* $XConsortium: logmsg.m,v 5.1 91/02/16 10:00:25 rws Exp $ */ +/* $XConsortium: logmsg.m,v 5.2 94/04/17 20:46:35 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.h b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.h index d9ec36b3b..aacd45135 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.h @@ -1,5 +1,5 @@ -/* $XConsortium: pexapi.h,v 5.1 91/02/16 10:00:09 rws Exp $ */ +/* $XConsortium: pexapi.h,v 5.2 94/04/17 20:46:35 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.k b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.k index 14cfc7752..5bcb65a00 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.k +++ b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.k @@ -1,5 +1,5 @@ -/* $XConsortium: pexapi.k,v 5.2 91/07/24 18:39:49 hersh Exp $ */ +/* $XConsortium: pexapi.k,v 5.3 94/04/17 20:46:36 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.m b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.m index 10bf72115..9e9ba5270 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pexapi.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/pexapi.m @@ -1,5 +1,5 @@ -/* $XConsortium: pexapi.m,v 5.4 92/02/24 15:57:23 mor Exp $ */ +/* $XConsortium: pexapi.m,v 5.5 94/04/17 20:46:36 mor Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.c b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.c index 2d19deb25..eb39dd647 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.c @@ -1,5 +1,5 @@ -/* $XConsortium: pixutils.c,v 5.1 91/02/16 10:00:14 rws Exp $ */ +/* $XConsortium: pixutils.c,v 5.2 94/04/17 20:46:37 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.h b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.h index 920ac296c..188f6d34b 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.h @@ -1,5 +1,5 @@ -/* $XConsortium: pixutils.h,v 5.1 91/02/16 10:00:18 rws Exp $ */ +/* $XConsortium: pixutils.h,v 5.2 94/04/17 20:46:38 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.m b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.m index da4f10ac6..2d2e7c718 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/pixutils.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/pixutils.m @@ -1,5 +1,5 @@ -/* $XConsortium: pixutils.m,v 5.1 91/02/16 10:00:30 rws Exp $ */ +/* $XConsortium: pixutils.m,v 5.2 94/04/17 20:46:38 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/portable.h b/xc/unsupported/test/InsPEX/tools/pexint/portable.h index f88cd48f8..39c50dfad 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/portable.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/portable.h @@ -1,5 +1,5 @@ -/* $XConsortium: portable.h,v 5.1 91/02/16 10:00:32 rws Exp $ */ +/* $XConsortium: portable.h,v 5.2 94/04/17 20:46:39 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/testutils.c b/xc/unsupported/test/InsPEX/tools/pexint/testutils.c index 5c2e8ac98..53dec7280 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/testutils.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/testutils.c @@ -1,5 +1,5 @@ -/* $XConsortium: testutils.c,v 5.2 91/07/24 18:42:26 hersh Exp $ */ +/* $XConsortium: testutils.c,v 5.3 94/04/17 20:46:39 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/testutils.h b/xc/unsupported/test/InsPEX/tools/pexint/testutils.h index b9b02c7a9..71d019a4a 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/testutils.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/testutils.h @@ -1,5 +1,5 @@ -/* $XConsortium: testutils.h,v 5.2 91/05/06 11:23:18 hersh Exp $ */ +/* $XConsortium: testutils.h,v 5.3 94/04/17 20:46:40 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/testutils.m b/xc/unsupported/test/InsPEX/tools/pexint/testutils.m index 7c06fecd0..71a2a0c0f 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/testutils.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/testutils.m @@ -1,5 +1,5 @@ -/* $XConsortium: testutils.m,v 5.1 91/02/16 10:00:24 rws Exp $ */ +/* $XConsortium: testutils.m,v 5.2 94/04/17 20:46:40 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/utility.c b/xc/unsupported/test/InsPEX/tools/pexint/utility.c index 86cf09e52..e252bfb63 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/utility.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/utility.c @@ -1,5 +1,5 @@ -/* $XConsortium: utility.c,v 5.1 91/02/16 10:00:10 rws Exp $ */ +/* $XConsortium: utility.c,v 5.2 94/04/17 20:46:41 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/utility.h b/xc/unsupported/test/InsPEX/tools/pexint/utility.h index 9e14a897b..75e334d1b 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/utility.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/utility.h @@ -1,5 +1,5 @@ -/* $XConsortium: utility.h,v 5.1 91/02/16 10:00:10 rws Exp $ */ +/* $XConsortium: utility.h,v 5.2 94/04/17 20:46:41 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/utility.k b/xc/unsupported/test/InsPEX/tools/pexint/utility.k index eaa7ec77f..fcf1ff39b 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/utility.k +++ b/xc/unsupported/test/InsPEX/tools/pexint/utility.k @@ -1,5 +1,5 @@ -/* $XConsortium: utility.k,v 5.1 91/02/16 10:00:05 rws Exp $ */ +/* $XConsortium: utility.k,v 5.2 94/04/17 20:46:42 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/utility.m b/xc/unsupported/test/InsPEX/tools/pexint/utility.m index ac342b83a..50b12c78b 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/utility.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/utility.m @@ -1,5 +1,5 @@ -/* $XConsortium: utility.m,v 5.1 91/02/16 10:00:05 rws Exp $ */ +/* $XConsortium: utility.m,v 5.2 94/04/17 20:46:42 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.c b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.c index 20b9e2f11..a95cf984c 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.c +++ b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.c @@ -1,5 +1,5 @@ -/* $XConsortium: xfutils.c,v 5.2 91/07/24 18:42:02 hersh Exp $ */ +/* $XConsortium: xfutils.c,v 5.3 94/04/17 20:46:43 hersh Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.h b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.h index 1653f4380..58a55b2b8 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.h @@ -1,5 +1,5 @@ -/* $XConsortium: xfutils.h,v 5.1 91/02/16 10:00:23 rws Exp $ */ +/* $XConsortium: xfutils.h,v 5.2 94/04/17 20:46:43 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.m b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.m index 1587163a7..9451d4962 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xfutils.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/xfutils.m @@ -1,5 +1,5 @@ -/* $XConsortium: xfutils.m,v 5.1 91/02/16 10:00:32 rws Exp $ */ +/* $XConsortium: xfutils.m,v 5.2 94/04/17 20:46:44 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xlib.h b/xc/unsupported/test/InsPEX/tools/pexint/xlib.h index 729211a42..0be00e03d 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xlib.h +++ b/xc/unsupported/test/InsPEX/tools/pexint/xlib.h @@ -1,5 +1,5 @@ -/* $XConsortium: xlib.h,v 5.1 91/02/16 10:00:11 rws Exp $ */ +/* $XConsortium: xlib.h,v 5.2 94/04/17 20:46:44 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xlib.k b/xc/unsupported/test/InsPEX/tools/pexint/xlib.k index 29d745dd1..c6f166c46 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xlib.k +++ b/xc/unsupported/test/InsPEX/tools/pexint/xlib.k @@ -1,5 +1,5 @@ -/* $XConsortium: xlib.k,v 5.1 91/02/16 10:00:12 rws Exp $ */ +/* $XConsortium: xlib.k,v 5.2 94/04/17 20:46:45 rws Exp $ */ /***************************************************************** diff --git a/xc/unsupported/test/InsPEX/tools/pexint/xlib.m b/xc/unsupported/test/InsPEX/tools/pexint/xlib.m index 6d3f0d740..252de16ed 100644 --- a/xc/unsupported/test/InsPEX/tools/pexint/xlib.m +++ b/xc/unsupported/test/InsPEX/tools/pexint/xlib.m @@ -1,5 +1,5 @@ -/* $XConsortium: xlib.m,v 5.1 91/02/16 10:00:13 rws Exp $ */ +/* $XConsortium: xlib.m,v 5.2 94/04/17 20:46:45 rws Exp $ */ /***************************************************************** |