aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code
diff options
context:
space:
mode:
authorNick Barnes2002-06-10 17:14:30 +0100
committerNick Barnes2002-06-10 17:14:30 +0100
commit5beb54b1e2766e64f63252178aa205f125ae14d1 (patch)
tree4d4c578ff175cd7a0b9378f129c52fe1079850e5 /mps/code
parent8ccc8742e4e56afff79f8905692927dc066b6ee1 (diff)
downloademacs-5beb54b1e2766e64f63252178aa205f125ae14d1.tar.gz
emacs-5beb54b1e2766e64f63252178aa205f125ae14d1.zip
Scriptworks build system removed (pekka says it's redundant anyway).
Copied from Perforce Change: 29990 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
-rw-r--r--mps/code/hqbuild/data/cv_alpha.txt1
-rw-r--r--mps/code/hqbuild/data/cv_x86.txt3
-rw-r--r--mps/code/hqbuild/tools/hqbuild20
-rw-r--r--mps/code/hqbuild/tools/hqbuild.bat52
4 files changed, 0 insertions, 76 deletions
diff --git a/mps/code/hqbuild/data/cv_alpha.txt b/mps/code/hqbuild/data/cv_alpha.txt
deleted file mode 100644
index cb5d08aa6c5..00000000000
--- a/mps/code/hqbuild/data/cv_alpha.txt
+++ /dev/null
@@ -1 +0,0 @@
1MSVCNT 5_0
diff --git a/mps/code/hqbuild/data/cv_x86.txt b/mps/code/hqbuild/data/cv_x86.txt
deleted file mode 100644
index 1feeab52711..00000000000
--- a/mps/code/hqbuild/data/cv_x86.txt
+++ /dev/null
@@ -1,3 +0,0 @@
1MSVCNT 5_0
2MSTOOLS Aug96US9
3MSMASM 6.11
diff --git a/mps/code/hqbuild/tools/hqbuild b/mps/code/hqbuild/tools/hqbuild
deleted file mode 100644
index 3101120869b..00000000000
--- a/mps/code/hqbuild/tools/hqbuild
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2# impl.sh.hqbuild
3#
4# $Id$
5# Copyright (c) 2001 Ravenbrook Limited.
6#
7# Build script for SWIG autobuild system.
8# The SWIG autobuild system expects to execute this file passing it
9# an argument.
10#
11# We specify that the argument will be the platform code to make life
12# easy for us
13
14case $# in
15 1) ;;
16 *) echo 1>&2 'Wrong number of arguments to hqbuild.
17Exactly one argument expected'; exit 1;;
18esac
19
20gnumake -r -f "$1.gmk"
diff --git a/mps/code/hqbuild/tools/hqbuild.bat b/mps/code/hqbuild/tools/hqbuild.bat
deleted file mode 100644
index 9527fe41e8f..00000000000
--- a/mps/code/hqbuild/tools/hqbuild.bat
+++ /dev/null
@@ -1,52 +0,0 @@
1@REM impl.bat.hqbuild: setup for SWIG autobuild system
2@REM $Id$
3@REM Copyright (c) 2001 Ravenbrook Limited. See end of file for license.
4@REM Called by SWIG autobuild system
5@
6@REM we expect whatcom to have set MSVCNT and possibly MSMASM and MSTOOLS
7IF NOT %MSMASM%X == X SET PATH=%MSMASM%\bin;%PATH%
8SET PATH=%MSVCNT%\..\sharedide\bin\ide;%MSVCNT%\..\sharedide\bin;%MSVCNT%\bin;%PATH%
9SET INCLUDE=%MSVCNT%\include;%MSVCNT%\mfc\include;%INCLUDE%
10SET LIB=%MSVCNT%\lib;%MSVCNT%\mfc\lib;%LIB%
11@REM First argument is expected to be platform code, rest we pass on
12nmake /f %1.nmk %2 %3 %4 %5 %6 %7 %8 %9
13@
14@rem C. COPYRIGHT AND LICENSE
15@rem
16@rem Copyright (C) 2001-2002 Ravenbrook Limited <http://www.ravenbrook.com/>.
17@rem All rights reserved. This is an open source license. Contact
18@rem Ravenbrook for commercial licensing options.
19@rem
20@rem Redistribution and use in source and binary forms, with or without
21@rem modification, are permitted provided that the following conditions are
22@rem met:
23@rem
24@rem 1. Redistributions of source code must retain the above copyright
25@rem notice, this list of conditions and the following disclaimer.
26@rem
27@rem 2. Redistributions in binary form must reproduce the above copyright
28@rem notice, this list of conditions and the following disclaimer in the
29@rem documentation and/or other materials provided with the distribution.
30@rem
31@rem 3. Redistributions in any form must be accompanied by information on how
32@rem to obtain complete source code for this software and any accompanying
33@rem software that uses this software. The source code must either be
34@rem included in the distribution or be available for no more than the cost
35@rem of distribution plus a nominal fee, and must be freely redistributable
36@rem under reasonable conditions. For an executable file, complete source
37@rem code means the source code for all modules it contains. It does not
38@rem include source code for modules or files that typically accompany the
39@rem major components of the operating system on which the executable file
40@rem runs.
41@rem
42@rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
43@rem IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
44@rem TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
45@rem PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
46@rem COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
47@rem INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
48@rem NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
49@rem USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
50@rem ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51@rem (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
52@rem THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.