https://github.com/EasyCrypt/easycrypt
Revision ec1f979ba03298c8db81c4c698d748592a3e7201 authored by Pierre-Yves Strub on 09 November 2021, 16:32:05 UTC, committed by GitHub on 09 November 2021, 16:32:05 UTC
Consistently use `mu1` instead of `mass`. 
2 parent s e770f0f + b37085c
Raw File
Tip revision: ec1f979ba03298c8db81c4c698d748592a3e7201 authored by Pierre-Yves Strub on 09 November 2021, 16:32:05 UTC
Merge pull request #88 from EasyCrypt/deploy-mu1
Tip revision: ec1f979
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