https://github.com/EasyCrypt/easycrypt
Revision 15d9bc20ff90f2f31012385107af6ef97f21b5c7 authored by Pierre-Yves Strub on 15 September 2015, 10:33:34 UTC, committed by Pierre-Yves Strub on 15 September 2015, 10:33:34 UTC
1 parent d7f94f2
Raw File
Tip revision: 15d9bc20ff90f2f31012385107af6ef97f21b5c7 authored by Pierre-Yves Strub on 15 September 2015, 10:33:34 UTC
build-linux: nits.
Tip revision: 15d9bc2
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