https://github.com/EasyCrypt/easycrypt
Revision 2d4a41e58b899843f5a28351edb3712fbcc59786 authored by Pierre-Yves Strub on 21 February 2017, 22:34:38 UTC, committed by Pierre-Yves Strub on 21 February 2017, 22:34:45 UTC
Again, docker is the way to go.
1 parent 57ad58b
Raw File
Tip revision: 2d4a41e58b899843f5a28351edb3712fbcc59786 authored by Pierre-Yves Strub on 21 February 2017, 22:34:38 UTC
remove emacs-based packaging script
Tip revision: 2d4a41e
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