https://github.com/EasyCrypt/easycrypt
Revision 7476fe1739a1df688412d894a39b3ed9d1f2fd74 authored by Pierre-Yves Strub on 14 December 2015, 12:02:17 UTC, committed by Pierre-Yves Strub on 14 December 2015, 12:02:26 UTC
1 parent 65f95ac
Raw File
Tip revision: 7476fe1739a1df688412d894a39b3ed9d1f2fd74 authored by Pierre-Yves Strub on 14 December 2015, 12:02:17 UTC
Removing internal implem. of removed `move=> x!`
Tip revision: 7476fe1
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