Revision f4b94e8a6f90413abd0bf7ef62285855cd459df0 authored by Pierre-Yves Strub on 16 December 2015, 18:06:01 UTC, committed by Pierre-Yves Strub on 16 December 2015, 18:07:43 UTC
 - `move=> _` does a late clear
 - `move=> ?` does an anonymous (_) intro

This is currently not enabled by default. The option `oldip` has
first to be cleared (`pragma -oldip`)
1 parent 65269da
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