https://github.com/EasyCrypt/easycrypt
Revision 34d6e5108e804a74f5aa589c45f7f8008165adb4 authored by Pierre-Yves Strub on 14 December 2017, 12:26:29 UTC, committed by Pierre-Yves Strub on 14 December 2017, 12:26:45 UTC
The IP //> & ||> are equivalent to /> & |> but use a stronger resolution tactic.
1 parent ddc2701
Raw File
Tip revision: 34d6e5108e804a74f5aa589c45f7f8008165adb4 authored by Pierre-Yves Strub on 14 December 2017, 12:26:29 UTC
New IP: //> & ||>
Tip revision: 34d6e51
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