https://github.com/EasyCrypt/easycrypt
Revision d6f54afae72ceb4ee36fe4e3868406abe6b1898c authored by Benjamin Gregoire on 16 September 2021, 15:44:18 UTC, committed by Benjamin Gregoire on 16 September 2021, 15:44:18 UTC
1 parent 56a6902
Raw File
Tip revision: d6f54afae72ceb4ee36fe4e3868406abe6b1898c authored by Benjamin Gregoire on 16 September 2021, 15:44:18 UTC
WIP
Tip revision: d6f54af
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