https://github.com/EasyCrypt/easycrypt
Revision 7f33e2a3856bf68aa5a58e4db8b686e1c6a6216d authored by Benjamin Grégoire on 26 April 2018, 06:13:35 UTC, committed by Pierre-Yves Strub on 26 April 2018, 06:18:29 UTC
 - 'include I' in module type allows the include of the contents of I
 - proc f1, f2, f3, ... = M imports f1, f2, f3 from M into the current
   module definition.

[closes #17375]
1 parent 4395a7e
Raw File
Tip revision: 7f33e2a3856bf68aa5a58e4db8b686e1c6a6216d authored by Benjamin Grégoire on 26 April 2018, 06:13:35 UTC
Module type include & bulk proc aliasing
Tip revision: 7f33e2a
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