https://github.com/EasyCrypt/easycrypt
Revision f382eaf985d3727ad36f00c49d425799d3f37026 authored by Pierre-Yves Strub on 13 February 2020, 08:38:38 UTC, committed by Benjamin Gregoire on 30 April 2020, 10:29:13 UTC
 - reduce: equations are found up-to reduction
 - eqtrue: if no equations can be found, add a equation of the form
           (e = true)
1 parent 8eafa35
Raw File
Tip revision: f382eaf985d3727ad36f00c49d425799d3f37026 authored by Pierre-Yves Strub on 13 February 2020, 08:38:38 UTC
Add new options to 'hint simplify':
Tip revision: f382eaf
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
TAR      := tar
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 Darwin,$(UNAME)))
  TAR := gtar
endif

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

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