https://github.com/EasyCrypt/easycrypt
Revision 1923b91e470a10492b290224f9f28db63ff9f307 authored by François Dupressoir on 14 November 2017, 14:04:42 UTC, committed by François Dupressoir on 14 November 2017, 14:04:42 UTC
1 parent 9bdd6dd
Raw File
Tip revision: 1923b91e470a10492b290224f9f28db63ff9f307 authored by François Dupressoir on 14 November 2017, 14:04:42 UTC
Minimal attempt at stabilising Hybrid
Tip revision: 1923b91
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