https://github.com/EasyCrypt/easycrypt
Revision b20b595b345dfdce1444f5175c472a98e66bdb29 authored by Benjamin Gregoire on 15 December 2015, 11:50:24 UTC, committed by Pierre-Yves Strub on 15 December 2015, 12:43:27 UTC
1 parent 18353b9
Raw File
Tip revision: b20b595b345dfdce1444f5175c472a98e66bdb29 authored by Benjamin Gregoire on 15 December 2015, 11:50:24 UTC
set default value max_lemmas to 0 when wanted_lemmas is given
Tip revision: b20b595
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