https://github.com/EasyCrypt/easycrypt
Revision 1fb57b63dbe244da2ff12f5fa8d68e930267b0c0 authored by Pierre-Yves Strub on 25 March 2019, 08:07:17 UTC, committed by Pierre-Yves Strub on 25 March 2019, 08:07:17 UTC
1 parent 4387903
Raw File
Tip revision: 1fb57b63dbe244da2ff12f5fa8d68e930267b0c0 authored by Pierre-Yves Strub on 25 March 2019, 08:07:17 UTC
fix reduction of fixpoints with extra arguments
Tip revision: 1fb57b6
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