# HG changeset patch # User bulwahn # Date 1283853113 -7200 # Node ID c035d01a7e77debb4c576be07c12cf72f5bb8d40 # Parent 71f3f194b962f1efc7e05119b0c01314349b1f0e adding the CFG example to the build process diff -r 71f3f194b962 -r c035d01a7e77 src/HOL/IsaMakefile --- a/src/HOL/IsaMakefile Tue Sep 07 11:51:53 2010 +0200 +++ b/src/HOL/IsaMakefile Tue Sep 07 11:51:53 2010 +0200 @@ -1325,6 +1325,7 @@ Predicate_Compile_Examples/Predicate_Compile_Examples.thy \ Predicate_Compile_Examples/Predicate_Compile_Quickcheck_Examples.thy \ Predicate_Compile_Examples/Code_Prolog_Examples.thy \ + Predicate_Compile_Examples/Context_Free_Grammar_Example.thy \ Predicate_Compile_Examples/Hotel_Example.thy \ Predicate_Compile_Examples/Lambda_Example.thy \ Predicate_Compile_Examples/List_Examples.thy diff -r 71f3f194b962 -r c035d01a7e77 src/HOL/Predicate_Compile_Examples/ROOT.ML --- a/src/HOL/Predicate_Compile_Examples/ROOT.ML Tue Sep 07 11:51:53 2010 +0200 +++ b/src/HOL/Predicate_Compile_Examples/ROOT.ML Tue Sep 07 11:51:53 2010 +0200 @@ -1,2 +1,2 @@ use_thys ["Predicate_Compile_Examples", "Predicate_Compile_Quickcheck_Examples", "Specialisation_Examples"]; -if getenv "PROLOG_HOME" = "" then () else use_thys ["Code_Prolog_Examples", "Hotel_Example", "Lambda_Example", "List_Examples"]; +if getenv "PROLOG_HOME" = "" then () else use_thys ["Code_Prolog_Examples", "Context_Free_Grammar_Example", "Hotel_Example", "Lambda_Example", "List_Examples"];