https://github.com/EasyCrypt/easycrypt
Revision a0a0c9b4b4f580c67360cbdb1d45479bdb10427d authored by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC, committed by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC
1 parent 20a6183
Raw File
Tip revision: a0a0c9b4b4f580c67360cbdb1d45479bdb10427d authored by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC
Upgrade versions of supported provers
Tip revision: a0a0c9b
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