https://github.com/EasyCrypt/easycrypt
Revision 526d0c052d58c1bff9b489249f92d840056dea34 authored by Benjamin Gregoire on 20 April 2018, 14:36:26 UTC, committed by Benjamin Gregoire on 20 April 2018, 14:36:26 UTC
1 parent 1a54e95
Raw File
Tip revision: 526d0c052d58c1bff9b489249f92d840056dea34 authored by Benjamin Gregoire on 20 April 2018, 14:36:26 UTC
fix [#17369] : bug in printing of module application
Tip revision: 526d0c0
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