https://github.com/EasyCrypt/easycrypt
Revision 0b59cac4113d6f6d16acdb679d82d5647a9e1bc2 authored by Pierre-Yves Strub on 18 December 2018, 14:34:23 UTC, committed by Pierre-Yves Strub on 18 December 2018, 14:35:55 UTC
1 parent 88a87da
Raw File
Tip revision: 0b59cac4113d6f6d16acdb679d82d5647a9e1bc2 authored by Pierre-Yves Strub on 18 December 2018, 14:34:23 UTC
fix bug in LDecl where the type of the operator was not correct.
Tip revision: 0b59cac
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