https://github.com/EasyCrypt/easycrypt
Revision 89f21734c18531190f4dee68116918e248493b6c authored by Pierre-Yves Strub on 07 November 2017, 09:14:11 UTC, committed by Pierre-Yves Strub on 07 November 2017, 09:14:11 UTC
1 parent 7721333
Raw File
Tip revision: 89f21734c18531190f4dee68116918e248493b6c authored by Pierre-Yves Strub on 07 November 2017, 09:14:11 UTC
Strengthen reduction for le/lt (int/real)
Tip revision: 89f2173
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