summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/Characters16
-rw-r--r--tools/DoMake61
-rw-r--r--tools/MakeDepend17
-rw-r--r--tools/OCamlc-custom10
-rw-r--r--tools/Time10
5 files changed, 0 insertions, 114 deletions
diff --git a/tools/Characters b/tools/Characters
deleted file mode 100644
index fb8e6868a..000000000
--- a/tools/Characters
+++ /dev/null
@@ -1,16 +0,0 @@
-# Characters
-
-# $Id$
-
-# Usage:
-# Characters n1 to n2
-#
-# Select the characters in the given interval, counting from the first
-# character of the current line, in the active window.
-#
-# Typical use is an error message of the form:
-# File fff; Line lll; Characters yyy to zzz
-
-exit 1 if {#} ­ 3
-
-Find Ƥ!{1}:¤!`evaluate {3} - {1}` "{active}"
diff --git a/tools/DoMake b/tools/DoMake
deleted file mode 100644
index 2fce34010..000000000
--- a/tools/DoMake
+++ /dev/null
@@ -1,61 +0,0 @@
-# DoMake
-
-# $Id$
-
-# Execute the output of "Make -f Makefile.Mac -f Makefile.Mac.depend"
-# or "Make -f Makefile -f Makefile.depend" if "Makefile.Mac" does not exist
-# or "Make -f <file>" if the "-f" option is given.
-
-# usage: domake [-quiet] [-f <file>]É <make arguments>
-
-set echo 0
-
-set domake_quiet 0
-set domake_files ""
-
-loop
- if "{1}" == "-quiet"
- set domake_quiet 1
- shift
- else if "{1}" == "-f"
- set domake_files "{domake_files} -f `quote "{2}"`"
- shift 2
- else
- break
- end
-end
-
-set tempfile "{TempFolder}temp-domake-`Date -n`"
-if "`exists "{tempfile}"`"
- set i 0
- loop
- break if ! "`exists "{tempfile}.{i}"`"
- evaluate i += 1
- end
- set tempfile "{tempfile}.{i}"
-end
-
-if "{domake_files}" == ""
- if "`exists Makefile.Mac`" != ""
- set domake_main "Makefile.Mac"
- else
- set domake_main "Makefile"
- end
-
- if "`exists "{domake_main}".depend`" != ""
- set domake_files "-f {domake_main} -f {domake_main}.depend"
- else
- set domake_files "-f {domake_main}"
- end
-end
-
-if {domake_quiet}
- echo >"{tempfile}"
-else
- echo 'set echo 1' >"{tempfile}"
-end
-make {domake_files} {"Parameters"} >>"{tempfile}"
-
-"{tempfile}"
-
-Delete -i "{tempfile}"
diff --git a/tools/MakeDepend b/tools/MakeDepend
deleted file mode 100644
index 5693b27e8..000000000
--- a/tools/MakeDepend
+++ /dev/null
@@ -1,17 +0,0 @@
-# MakeDepend
-
-# $Id$
-
-
-# Usage: MakeDepend fileÉ
-
-# Generate the Make dependency rules for a set of C files.
-# The rules are printed on standard output.
-
-set echo 0
-set exit 0
-
-for i in {"parameters"}
- mrc -c -w off -make dev:stdout "{i}" ³ dev:null ¶
- | streamedit -e '/¶"(Å)¨0.c.o¶"/ replace // "¶""¨0".c.o¶" ¶""¨0".c.x¶""'
-end
diff --git a/tools/OCamlc-custom b/tools/OCamlc-custom
deleted file mode 100644
index c389974e2..000000000
--- a/tools/OCamlc-custom
+++ /dev/null
@@ -1,10 +0,0 @@
-# OCamlc with option -custom
-# Macintosh version
-
-set echo 0
-set -e ocamlcommands "{tempfolder}"OCaml.temp."`date -n`"
-echo >"{ocamlcommands}"
-ocamlc -custom {"parameters"}
-execute "{ocamlcommands}"
-
-delete -y "{ocamlcommands}"
diff --git a/tools/Time b/tools/Time
deleted file mode 100644
index 0a8267465..000000000
--- a/tools/Time
+++ /dev/null
@@ -1,10 +0,0 @@
-# Time # Measure execution time
-# Usage: Time command argumentsÉ
-
-set echo 0
-
-set startdate `date -n`
-{parameters}
-set enddate `date -n`
-
-echo "# Time: `evaluate {enddate} - {startdate}` s" > dev:stderr