https://github.com/EasyCrypt/easycrypt
Revision 46901a7aa8b452d99158cc4bd3b8e12a8d894465 authored by Pierre-Yves Strub on 16 December 2015, 15:31:27 UTC, committed by Pierre-Yves Strub on 16 December 2015, 15:31:38 UTC
This syntax is a notation for `f1{1} = f1{2} /\ ...`

[close #17284]
1 parent 0b4bb01
Raw File
Tip revision: 46901a7aa8b452d99158cc4bd3b8e12a8d894465 authored by Pierre-Yves Strub on 16 December 2015, 15:31:27 UTC
New syntax for equiv. eq: `={| f1, ..., fn |}`.
Tip revision: 46901a7
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
MACHINE  := $(shell $(OCAML) -ccopt -dumpmachine dummy.c 2>/dev/null)
UNAME    := $(shell uname -s)
EXE      :=

ifneq (,$(findstring CYGWIN,$(UNAME)))
  CC = $(MACHINE)-gcc
endif

ifneq (,$(findstring mingw,$(MACHINE)))
EXE := .exe
endif

ifneq (,$(findstring cygwin,$(MACHINE)))
EXE := .exe
endif
back to top