https://github.com/EasyCrypt/easycrypt
Revision e401883545893cb9d462205b397e2b4db08892d6 authored by Benjamin Gregoire on 24 July 2017, 17:16:15 UTC, committed by Benjamin Gregoire on 24 July 2017, 17:18:23 UTC
1 parent ddf604b
Raw File
Tip revision: e401883545893cb9d462205b397e2b4db08892d6 authored by Benjamin Gregoire on 24 July 2017, 17:16:15 UTC
more info when local lemma fail.
Tip revision: e401883
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
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 mingw,$(MACHINE)))
EXE := .exe
endif

ifneq (,$(findstring cygwin,$(MACHINE)))
EXE := .exe
endif
back to top