https://github.com/EasyCrypt/easycrypt
Revision 2a78686f0ad72e76103e5e100e418d837e1f0fd5 authored by François Dupressoir on 11 August 2017, 16:15:05 UTC, committed by François Dupressoir on 11 August 2017, 16:15:05 UTC
1 parent 379e448
Raw File
Tip revision: 2a78686f0ad72e76103e5e100e418d837e1f0fd5 authored by François Dupressoir on 11 August 2017, 16:15:05 UTC
typos in Distr (comments)
Tip revision: 2a78686
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