https://github.com/EasyCrypt/easycrypt
Revision 5b694aee119076d6c0b922bbabd7dce82ceaa871 authored by Benjamin Gregoire on 25 October 2018, 07:14:05 UTC, committed by Benjamin Gregoire on 25 October 2018, 07:14:05 UTC
1 parent 9d34c3b
Raw File
Tip revision: 5b694aee119076d6c0b922bbabd7dce82ceaa871 authored by Benjamin Gregoire on 25 October 2018, 07:14:05 UTC
add some lemma
Tip revision: 5b694ae
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