Revision bddc0d5ed41f8f4d065f2cb9365678ea07a2bb65 authored by Pierre-Yves Strub on 10 December 2015, 08:50:50 UTC, committed by Pierre-Yves Strub on 10 December 2015, 09:21:58 UTC
This means that if the first i-p (pruning simplication ones)
is a `case` i-p, no case analysis is done. Previous behaviour
can be recovered by prepending a `-` (i.e. by flusing the i-p chain)

Scripts can be updated with:

gsed -i 's@rewrite\([^;]*=>\( */=\)\?\) *\[@rewrite\1 -[@g' **/*.ec*
1 parent a820b13
Raw File
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