https://github.com/EasyCrypt/easycrypt
Revision a4fb49d6d623489c18cc5cc7e32fdabb95af018b authored by Pierre-Yves Strub on 04 August 2019, 19:07:17 UTC, committed by Pierre-Yves Strub on 04 August 2019, 19:07:17 UTC
1 parent af281fd
Raw File
Tip revision: a4fb49d6d623489c18cc5cc7e32fdabb95af018b authored by Pierre-Yves Strub on 04 August 2019, 19:07:17 UTC
fix Why3 literals comparisons
Tip revision: a4fb49d
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