https://github.com/EasyCrypt/easycrypt
Revision 1313a7da71c6007248cdb9ac2cb0401946b9d72d authored by François Dupressoir on 14 April 2021, 18:20:13 UTC, committed by François Dupressoir on 14 April 2021, 18:20:13 UTC
2 parent s 49d7ad3 + 2afb775
Raw File
Tip revision: 1313a7da71c6007248cdb9ac2cb0401946b9d72d authored by François Dupressoir on 14 April 2021, 18:20:13 UTC
Merge remote-tracking branch 'origin/1.0' into deploy-clean-oldmonoid
Tip revision: 1313a7d
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
TAR      := tar
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 Darwin,$(UNAME)))
  TAR := gtar
endif

ifneq (,$(findstring mingw,$(MACHINE)))
EXE := .exe
endif

ifneq (,$(findstring cygwin,$(MACHINE)))
EXE := .exe
endif
back to top