https://github.com/EasyCrypt/easycrypt
Revision 672c36d7762559e6e598305325b800bab0d0e570 authored by Benjamin Gregoire on 25 October 2018, 14:38:06 UTC, committed by Benjamin Gregoire on 25 October 2018, 14:38:06 UTC
1 parent 5b694ae
Raw File
Tip revision: 672c36d7762559e6e598305325b800bab0d0e570 authored by Benjamin Gregoire on 25 October 2018, 14:38:06 UTC
weaken axiom
Tip revision: 672c36d
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