https://github.com/EasyCrypt/easycrypt
Revision 3b9667b4c1eb04d8d5d0c9db5729c39248c5b88f authored by Pierre-Yves Strub on 14 October 2019, 06:27:33 UTC, committed by Pierre-Yves Strub on 14 October 2019, 06:27:33 UTC
Pragmas are: PrPo:{pr,po}:{raw,ands}

(Pragma system has been revamped by this commit)
1 parent 66e7f99
Raw File
Tip revision: 3b9667b4c1eb04d8d5d0c9db5729c39248c5b88f authored by Pierre-Yves Strub on 14 October 2019, 06:27:33 UTC
Pragmas for printing pre/post as a list of their resp. conjunctions
Tip revision: 3b9667b
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