https://github.com/EasyCrypt/easycrypt
Revision 77aac4b0be22fc83a02d9ea6e32164d893206d94 authored by Pierre-Yves Strub on 24 February 2022, 07:02:59 UTC, committed by Pierre-Yves Strub on 24 February 2022, 07:02:59 UTC
This reverts commit 70662a755d2121ca1c809cf2eef68462bd720d72.
1 parent 559910b
Raw File
Tip revision: 77aac4b0be22fc83a02d9ea6e32164d893206d94 authored by Pierre-Yves Strub on 24 February 2022, 07:02:59 UTC
Revert "Unfold non-transparent operators in `case` & `elim`."
Tip revision: 77aac4b
Makefile
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAMLBUILD_BIN   = ocamlbuild -use-ocamlfind
OCAMLBUILD_EXTRA = -classic-display

# In Emacs, use classic display to enable error jumping.
ifeq ($(shell echo $$TERM), dumb)
 OCAMLBUILD_EXTRA += -classic-display
endif
OCAMLBUILD := $(OCAMLBUILD_BIN) $(OCAMLBUILD_EXTRA)

# --------------------------------------------------------------------
.PHONY: all clean

all:
	$(OCAMLBUILD) ppx_lint.native

clean:
	$(OCAMLBUILD) -clean
	rm -f ppx_lint.native* ppx_lint.byte*
back to top