https://github.com/EasyCrypt/easycrypt
Revision 26e0600976c3d7d3743fbea35d361c788f294b73 authored by Cécile BARITEL-RUET on 07 March 2019, 09:47:39 UTC, committed by Cécile BARITEL-RUET on 07 March 2019, 09:47:39 UTC
1 parent d851a97
Raw File
Tip revision: 26e0600976c3d7d3743fbea35d361c788f294b73 authored by Cécile BARITEL-RUET on 07 March 2019, 09:47:39 UTC
menv_is_full now checks if unienv is closed
Tip revision: 26e0600
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