https://github.com/EasyCrypt/easycrypt
Revision f0d849f70bb9f01e34f1a1be63b599e67983953d authored by Benjamin Gregoire on 18 December 2015, 07:53:04 UTC, committed by Pierre-Yves Strub on 18 December 2015, 08:13:07 UTC
1 parent 98986d8
Raw File
Tip revision: f0d849f70bb9f01e34f1a1be63b599e67983953d authored by Benjamin Gregoire on 18 December 2015, 07:53:04 UTC
add lemmas in the sodlib
Tip revision: f0d849f
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