From 6d7056ed0062e6df2db3c99176ce0e918ccf4b4d Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Wed, 17 Feb 2010 15:43:55 -0800 Subject: xts5: Build and install vswrpt report analyzer This will be renamed to xts-report, but it has some clever argv[0] matching that prevents it for now. Also fixes a broken comment from an RCS ID removal. --- configure.ac | 1 + xts5/src/bin/Makefile.am | 2 +- xts5/src/bin/reports/.gitignore | 1 + xts5/src/bin/reports/Makefile | 93 --------------------------------------- xts5/src/bin/reports/Makefile.am | 1 + xts5/src/bin/reports/Makefile.old | 93 +++++++++++++++++++++++++++++++++++++++ xts5/src/bin/reports/vswrpt.c | 1 + 7 files changed, 98 insertions(+), 94 deletions(-) create mode 100644 xts5/src/bin/reports/.gitignore delete mode 100644 xts5/src/bin/reports/Makefile create mode 100644 xts5/src/bin/reports/Makefile.am create mode 100644 xts5/src/bin/reports/Makefile.old diff --git a/configure.ac b/configure.ac index ed6d8fc1..d3cdf375 100644 --- a/configure.ac +++ b/configure.ac @@ -128,6 +128,7 @@ xts5/src/libXtTest/Makefile xts5/src/xim/Makefile xts5/src/bin/Makefile xts5/src/bin/mc/Makefile +xts5/src/bin/reports/Makefile xts5/fonts/Makefile xts5/Xproto/Makefile xts5/Xopen/Makefile diff --git a/xts5/src/bin/Makefile.am b/xts5/src/bin/Makefile.am index d6d106b3..a3edbda0 100644 --- a/xts5/src/bin/Makefile.am +++ b/xts5/src/bin/Makefile.am @@ -1 +1 @@ -SUBDIRS = mc +SUBDIRS = mc reports diff --git a/xts5/src/bin/reports/.gitignore b/xts5/src/bin/reports/.gitignore new file mode 100644 index 00000000..2174a1ab --- /dev/null +++ b/xts5/src/bin/reports/.gitignore @@ -0,0 +1 @@ +vswrpt diff --git a/xts5/src/bin/reports/Makefile b/xts5/src/bin/reports/Makefile deleted file mode 100644 index 0368ed23..00000000 --- a/xts5/src/bin/reports/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# -# Copyright (c) 2005 X.Org Foundation LLC -# -# Permission is hereby granted, free of charge, to any person obtaining a copy of -# this software and associated documentation files (the "Software"), to deal in -# the Software without restriction, including without limitation the rights to -# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -# of the Software, and to permit persons to whom the Software is furnished to do -# so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. -# -# -# Copyright (c) Applied Testing and Technology, Inc. 1993, 1994, 1995 -# All Rights Reserved. -# -# Project: VSW5 -# -# File: xts5/src/bin/reports/Makefile -# -# Description: -# Makefile for report generators -# -# Modifications: -# $Log: Makefile,v $ -# Revision 1.2 2005-11-03 08:42:01 jmichael -# clean up all vsw5 paths to use xts5 instead. -# -# Revision 1.1.1.1 2005/02/12 15:14:15 anderson -# VSW5 Source under an MIT license This is version 5.0.2 as received from -# AppTest with the new license applied. -# -# Revision 8.0 1998/12/23 23:24:18 mar -# Branch point for Release 5.0.2 -# -# Revision 7.0 1998/10/30 22:42:28 mar -# Branch point for Release 5.0.2b1 -# -# Revision 6.0 1998/03/02 05:16:44 tbr -# Branch point for Release 5.0.1 -# -# Revision 5.0 1998/01/26 03:13:17 tbr -# Branch point for Release 5.0.1b1 -# -# Revision 4.3 1996/07/10 01:07:58 andy -# Changed mreport to vswrptm -# -# Revision 4.2 1996/07/09 23:57:57 andy -# Changed creport to vswrpt -# -# Revision 4.1 1996/03/22 16:49:40 andy -# Removed trailing smei-colons from target lines -# -# Revision 4.0 1995/12/15 08:41:30 tbr -# Branch point for Release 5.0.0 -# -# Revision 3.2 1995/12/15 00:38:25 andy -# Prepare for GA Release -# - -all: vswrpt vswrptm vsw_pr - -vswrpt: vswrpt.c - $(CC) $(CFLAGS) -o vswrpt vswrpt.c $(LDFLAGS) $(SYSLIBS) - -vswrptm: vswrptm.c - $(CC) $(CFLAGS) -o vswrptm vswrptm.c $(LDFLAGS) $(SYSLIBS) - -vsw_pr: vsw_pr.c - $(CC) $(CFLAGS) -o vsw_pr vsw_pr.c $(LDFLAGS) $(SYSLIBS) - -clean: - @rm -f *.o - @rm -f vswrpt vswrptm vsw_pr - -clobber: clean - @rm -f $(TET_ROOT)/xts5/bin/vswrpt - @rm -f $(TET_ROOT)/xts5/bin/vswrptm - @rm -f $(TET_ROOT)/xts5/bin/vsw_pr - -install: all - @(cp $(TET_ROOT)/xts5/src/bin/reports/vswrpt $(TET_ROOT)/xts5/bin) - @(cp $(TET_ROOT)/xts5/src/bin/reports/vswrptm $(TET_ROOT)/xts5/bin) - @(cp $(TET_ROOT)/xts5/src/bin/reports/vsw_pr $(TET_ROOT)/xts5/bin) diff --git a/xts5/src/bin/reports/Makefile.am b/xts5/src/bin/reports/Makefile.am new file mode 100644 index 00000000..c7e90066 --- /dev/null +++ b/xts5/src/bin/reports/Makefile.am @@ -0,0 +1 @@ +bin_PROGRAMS = vswrpt diff --git a/xts5/src/bin/reports/Makefile.old b/xts5/src/bin/reports/Makefile.old new file mode 100644 index 00000000..0368ed23 --- /dev/null +++ b/xts5/src/bin/reports/Makefile.old @@ -0,0 +1,93 @@ +# +# Copyright (c) 2005 X.Org Foundation LLC +# +# Permission is hereby granted, free of charge, to any person obtaining a copy of +# this software and associated documentation files (the "Software"), to deal in +# the Software without restriction, including without limitation the rights to +# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +# of the Software, and to permit persons to whom the Software is furnished to do +# so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# +# +# Copyright (c) Applied Testing and Technology, Inc. 1993, 1994, 1995 +# All Rights Reserved. +# +# Project: VSW5 +# +# File: xts5/src/bin/reports/Makefile +# +# Description: +# Makefile for report generators +# +# Modifications: +# $Log: Makefile,v $ +# Revision 1.2 2005-11-03 08:42:01 jmichael +# clean up all vsw5 paths to use xts5 instead. +# +# Revision 1.1.1.1 2005/02/12 15:14:15 anderson +# VSW5 Source under an MIT license This is version 5.0.2 as received from +# AppTest with the new license applied. +# +# Revision 8.0 1998/12/23 23:24:18 mar +# Branch point for Release 5.0.2 +# +# Revision 7.0 1998/10/30 22:42:28 mar +# Branch point for Release 5.0.2b1 +# +# Revision 6.0 1998/03/02 05:16:44 tbr +# Branch point for Release 5.0.1 +# +# Revision 5.0 1998/01/26 03:13:17 tbr +# Branch point for Release 5.0.1b1 +# +# Revision 4.3 1996/07/10 01:07:58 andy +# Changed mreport to vswrptm +# +# Revision 4.2 1996/07/09 23:57:57 andy +# Changed creport to vswrpt +# +# Revision 4.1 1996/03/22 16:49:40 andy +# Removed trailing smei-colons from target lines +# +# Revision 4.0 1995/12/15 08:41:30 tbr +# Branch point for Release 5.0.0 +# +# Revision 3.2 1995/12/15 00:38:25 andy +# Prepare for GA Release +# + +all: vswrpt vswrptm vsw_pr + +vswrpt: vswrpt.c + $(CC) $(CFLAGS) -o vswrpt vswrpt.c $(LDFLAGS) $(SYSLIBS) + +vswrptm: vswrptm.c + $(CC) $(CFLAGS) -o vswrptm vswrptm.c $(LDFLAGS) $(SYSLIBS) + +vsw_pr: vsw_pr.c + $(CC) $(CFLAGS) -o vsw_pr vsw_pr.c $(LDFLAGS) $(SYSLIBS) + +clean: + @rm -f *.o + @rm -f vswrpt vswrptm vsw_pr + +clobber: clean + @rm -f $(TET_ROOT)/xts5/bin/vswrpt + @rm -f $(TET_ROOT)/xts5/bin/vswrptm + @rm -f $(TET_ROOT)/xts5/bin/vsw_pr + +install: all + @(cp $(TET_ROOT)/xts5/src/bin/reports/vswrpt $(TET_ROOT)/xts5/bin) + @(cp $(TET_ROOT)/xts5/src/bin/reports/vswrptm $(TET_ROOT)/xts5/bin) + @(cp $(TET_ROOT)/xts5/src/bin/reports/vsw_pr $(TET_ROOT)/xts5/bin) diff --git a/xts5/src/bin/reports/vswrpt.c b/xts5/src/bin/reports/vswrpt.c index f73c4fdb..670935f9 100644 --- a/xts5/src/bin/reports/vswrpt.c +++ b/xts5/src/bin/reports/vswrpt.c @@ -19,6 +19,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/* * * (C) Copyright 2000-2001 The Open Group * (C) Copyright 1996 Applied Testing Technology, Inc. -- cgit v1.2.3