https://github.com/EasyCrypt/easycrypt
Revision 536b08d9a20de71974475dd36b04bde13ab614ae authored by Pierre-Yves Strub on 10 July 2015, 15:37:23 UTC, committed by Pierre-Yves Strub on 10 July 2015, 15:37:36 UTC
1 parent 3282164
Raw File
Tip revision: 536b08d9a20de71974475dd36b04bde13ab614ae authored by Pierre-Yves Strub on 10 July 2015, 15:37:23 UTC
finset: subset <-> card relation.
Tip revision: 536b08d
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