https://github.com/EasyCrypt/easycrypt
Revision f173dc4a083b572bf6fc1eef2ef7723e39c1ba9a authored by François Dupressoir on 24 July 2017, 17:15:18 UTC, committed by François Dupressoir on 24 July 2017, 17:15:18 UTC
1 parent e456402
Raw File
Tip revision: f173dc4a083b572bf6fc1eef2ef7723e39c1ba9a authored by François Dupressoir on 24 July 2017, 17:15:18 UTC
"Fixing" PRP<->PRF lemmas
Tip revision: f173dc4
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