https://github.com/EasyCrypt/easycrypt
Revision 9ae0786a74ba0aebd9990eb85948bcbdc2e4c3dd authored by Pierre-Yves Strub on 23 April 2018, 13:55:19 UTC, committed by Pierre-Yves Strub on 23 April 2018, 14:06:48 UTC
This revert pattern revert a local-binding as a let-in construct.

[closes #17291]
1 parent a18abdf
Raw File
Tip revision: 9ae0786a74ba0aebd9990eb85948bcbdc2e4c3dd authored by Pierre-Yves Strub on 23 April 2018, 13:55:19 UTC
New revert pattern: `@x`
Tip revision: 9ae0786
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