https://github.com/EasyCrypt/easycrypt
Revision fe76f3396562618bbee795ea7032cdb29714100e authored by Benjamin Gregoire on 14 December 2017, 10:37:55 UTC, committed by Benjamin Gregoire on 14 December 2017, 10:37:55 UTC
1 parent 527d9ad
Raw File
Tip revision: fe76f3396562618bbee795ea7032cdb29714100e authored by Benjamin Gregoire on 14 December 2017, 10:37:55 UTC
more lemmas on FSet.oflist
Tip revision: fe76f33
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