Revision add72dcda46a49843364b637c192e4b62910f1df authored by Pierre-Yves Strub on 14 November 2019, 10:15:31 UTC, committed by Pierre-Yves Strub on 14 November 2019, 10:15:31 UTC
[closes #17403]

commit 55d4c60f675f8baf509682dd12e817377ba682e9
Author: Pierre-Yves Strub <pierre-yves@strub.nu>
Date:   Thu Nov 14 10:30:54 2019 +0100

    Regeneralization of unspecified arguments in applicative views
1 parent e58c36a
Raw File
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