https://github.com/EasyCrypt/easycrypt
Revision 97e5b1d8e3e95b6b0a5da13abbfa823f31ab7325 authored by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC, committed by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC
1 parent fecd089
Raw File
Tip revision: 97e5b1d8e3e95b6b0a5da13abbfa823f31ab7325 authored by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC
fix error in"unroll for" tactic in case of hoare and phoare
Tip revision: 97e5b1d
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