https://github.com/EasyCrypt/easycrypt
Revision d2e05373f91722db44fc8c0fa1cec531a47c440f authored by Benjamin Gregoire on 25 February 2021, 10:29:19 UTC, committed by Benjamin Gregoire on 25 February 2021, 10:29:19 UTC
1 parent b2bc4e8
Raw File
Tip revision: d2e05373f91722db44fc8c0fa1cec531a47c440f authored by Benjamin Gregoire on 25 February 2021, 10:29:19 UTC
more lemma on dbfun
Tip revision: d2e0537
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