https://github.com/EasyCrypt/easycrypt
Revision 7c81c519dfa13dc64b08efae35d0f89dc4a33504 authored by Pierre-Yves Strub on 17 September 2018, 11:13:53 UTC, committed by Pierre-Yves Strub on 17 September 2018, 11:13:53 UTC
1 parent 0419c4e
Raw File
Tip revision: 7c81c519dfa13dc64b08efae35d0f89dc4a33504 authored by Pierre-Yves Strub on 17 September 2018, 11:13:53 UTC
fix / nits
Tip revision: 7c81c51
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