author | wenzelm |
Tue, 07 Aug 2012 16:34:15 +0200 | |
changeset 48709 | 719f458cd89e |
parent 47267 | 4c7548e7df86 |
permissions | -rwxr-xr-x |
21301 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
3 |
# Author: Makarius |
|
4 |
# |
|
33684 | 5 |
# DESCRIPTION: Update standard keyword files for Emacs Proof General |
21301 | 6 |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28481
diff
changeset
|
7 |
ISABELLE_HOME="$(isabelle getenv -b ISABELLE_HOME)" |
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28481
diff
changeset
|
8 |
LOG="$(isabelle getenv -b ISABELLE_OUTPUT)"/log |
23694 | 9 |
|
24884 | 10 |
|
11 |
cd "$ISABELLE_HOME/etc" |
|
12 |
||
33684 | 13 |
isabelle keywords \ |
48709
719f458cd89e
prefer static Build.outer_syntax in Isabelle/Scala session -- discontinued incremental protocol;
wenzelm
parents:
47267
diff
changeset
|
14 |
"$LOG/HOLCF.gz" "$LOG/HOL-Boogie.gz" "$LOG/HOL-Library.gz" "$LOG/HOL-Nominal.gz" \ |
719f458cd89e
prefer static Build.outer_syntax in Isabelle/Scala session -- discontinued incremental protocol;
wenzelm
parents:
47267
diff
changeset
|
15 |
"$LOG/HOL-Statespace.gz" "$LOG/HOL-SPARK.gz" "$LOG/HOL-TPTP.gz" "$LOG/HOL-Import.gz" |
24878
7ed3077528b6
use isatool keywords -- generate from logs instead of session images;
wenzelm
parents:
23694
diff
changeset
|
16 |
|
48709
719f458cd89e
prefer static Build.outer_syntax in Isabelle/Scala session -- discontinued incremental protocol;
wenzelm
parents:
47267
diff
changeset
|
17 |
isabelle keywords -k ZF "$LOG/ZF.gz" |
24884 | 18 |