https://github.com/EasyCrypt/easycrypt
Revision 34257566e7f9311359861946880a0eb35ce0d147 authored by Pierre-Yves Strub on 15 November 2016, 20:54:16 UTC, committed by Pierre-Yves Strub on 15 November 2016, 20:54:22 UTC
1 parent 6700014
Raw File
Tip revision: 34257566e7f9311359861946880a0eb35ce0d147 authored by Pierre-Yves Strub on 15 November 2016, 20:54:16 UTC
fix conversion check of expressions (missing quantif)
Tip revision: 3425756
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