https://github.com/EasyCrypt/easycrypt
Revision 3e10ebb97a851b298f3b5023239314791d27ea46 authored by Benjamin Gregoire on 21 July 2017, 13:25:02 UTC, committed by Benjamin Gregoire on 21 July 2017, 13:32:33 UTC
1 parent d831de8
Raw File
Tip revision: 3e10ebb97a851b298f3b5023239314791d27ea46 authored by Benjamin Gregoire on 21 July 2017, 13:25:02 UTC
restart the proof of cramershoup
Tip revision: 3e10ebb
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