https://github.com/EasyCrypt/easycrypt
Revision ce9380db2fcee68ae3b4a24970561a25fb105d4f authored by Benjamin Gregoire on 14 October 2019, 06:41:25 UTC, committed by Pierre-Yves Strub on 14 October 2019, 06:42:35 UTC
1 parent 3b9667b
Raw File
Tip revision: ce9380db2fcee68ae3b4a24970561a25fb105d4f authored by Benjamin Gregoire on 14 October 2019, 06:41:25 UTC
Add transitivity * (transivity with generation of VC)
Tip revision: ce9380d
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