author | wenzelm |
Wed, 25 Nov 2009 15:21:41 +0100 | |
changeset 33898 | 2ca2693a8c10 |
parent 33687 | 3222fa052846 |
child 37284 | a1b0201584cd |
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 \ |
28481 | 14 |
"$LOG/Pure.gz" "$LOG/Pure-ProofGeneral.gz" "$LOG/HOL.gz" "$LOG/HOLCF.gz" \ |
33898 | 15 |
"$LOG/IOA.gz" "$LOG/HOL-Boogie.gz" "$LOG/HOL-Nominal.gz" "$LOG/HOL-SMT.gz" \ |
16 |
"$LOG/HOL-Statespace.gz" |
|
24878
7ed3077528b6
use isatool keywords -- generate from logs instead of session images;
wenzelm
parents:
23694
diff
changeset
|
17 |
|
33684 | 18 |
isabelle keywords -k ZF \ |
24884 | 19 |
"$LOG/Pure.gz" "$LOG/Pure-ProofGeneral.gz" "$LOG/FOL.gz" "$LOG/ZF.gz" |
20 |