https://github.com/EasyCrypt/easycrypt
Revision d92f237dcdef8a1eac984fbd3e0c1d399243b5bd authored by Pierre-Yves Strub on 01 March 2017, 10:59:06 UTC, committed by Pierre-Yves Strub on 01 March 2017, 10:59:06 UTC
1 parent 3e41975
Raw File
Tip revision: d92f237dcdef8a1eac984fbd3e0c1d399243b5bd authored by Pierre-Yves Strub on 01 March 2017, 10:59:06 UTC
API: access to alpha-conversion without path norm'ion
Tip revision: d92f237
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