https://github.com/EasyCrypt/easycrypt
Revision 4dbdb882173b2db5e6b446732df70b3e0676e495 authored by Pierre-Yves Strub on 26 May 2021, 07:20:22 UTC, committed by Pierre-Yves Strub on 26 May 2021, 07:20:22 UTC
 - inline but keep override (<=)
 - override theories
1 parent 16e5d3b
Raw File
Tip revision: 4dbdb882173b2db5e6b446732df70b3e0676e495 authored by Pierre-Yves Strub on 26 May 2021, 07:20:22 UTC
Extend cloning with
Tip revision: 4dbdb88
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