child_prec (pp_assoc child_assoc) (CicNotationPp.pp_pos child_pos)
curr_prec; *)
if is_atomic t then t
- else if child_prec >= 0 && child_prec < curr_prec then
+(* FG: FIXME: should be < but < causes no brackets when \forall .. \to .. associates to the left *)
+ else if child_prec >= 0 && child_prec <= curr_prec then
begin (* parens should be added *)
(* prerr_endline "adding parens!"; *)
match t with
| com = comment ->
fun ?(never_include=false) ~include_paths status -> status,LSome (GrafiteAst.Comment (loc, com))
| (iloc,fname,mode) = include_command ; SYMBOL "." ->
+ !out fname;
fun ?(never_include=false) ~include_paths status ->
let _root, buri, fullpath, _rrelpath =
Librarian.baseuri_of_script ~include_paths fname
else LexiconEngine.eval_command status
(LexiconAst.Include (iloc,buri,mode,fullpath))
in
- !out fname;
status,
LSome
(GrafiteAst.Executable
DIR=$(shell basename $$PWD)
+LOG = log.txt
+
MMAS = $(shell find Legacy-2 Base-2 -name "*.mma")
MAS = $(MMAS:%.mma=%.ma)
XMAS = Legacy-2/theory.ma Base-2/theory.ma LambdaDelta-2/theory.ma
$(DIR) all: depends
+ $(H)$(RM) $(LOG)
$(H)$(MAKE) H=$(H) --no-print-directory build
$(DIR).opt opt all.opt: depends
+ $(H)$(RM) $(LOG)
$(H)$(MAKE) H=$(H) --no-print-directory build.opt
build: $(MAS)
$(H)echo Legacy-2/theory.ma `$(BIN)matitadep.opt -stdout Legacy-2/theory.ma` >> depends
$(H)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> depends
- $(H)$(BIN)matitac $(MATITAOPTIONS) 2> /dev/null
- $(H)rm depends
+ $(H)$(BIN)matitac $(MATITAOPTIONS) 2>> $(LOG)
+ $(H)$(RM) depends
build.opt: $(MAS)
$(H)echo Legacy-2/theory.ma `$(BIN)matitadep.opt -stdout Legacy-2/theory.ma` >> depends
$(H)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> depends
- $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2> /dev/null
- $(H)rm depends
+ $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG)
+ $(H)$(RM) depends
clean:
$(H)$(BIN)matitaclean $(MATITAOPTIONS)
depends: depend.opt
%.ma: %.mma
- $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `$(BIN)matitadep.opt -stdout $<` 2> /dev/null
- $(H)$(BIN)matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null
+ $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `$(BIN)matitadep.opt -stdout $<` 2>> $(LOG)
+ $(H)$(BIN)matitac.opt $(MATITAOPTIONS) -dump $@ $< 2>> $(LOG)
$(H)echo $@ `$(BIN)matitadep.opt -stdout $@` >> depends
include Legacy-2/.depend