https://github.com/EasyCrypt/easycrypt
Revision e77d6596f18ecb90f062f826c9c5a36fe7cc1a44 authored by Pierre-Yves Strub on 14 October 2019, 07:45:06 UTC, committed by Pierre-Yves Strub on 14 October 2019, 07:45:06 UTC
1 parent 297f528
Raw File
Tip revision: e77d6596f18ecb90f062f826c9c5a36fe7cc1a44 authored by Pierre-Yves Strub on 14 October 2019, 07:45:06 UTC
Misc. in SmtMap.ec
Tip revision: e77d659
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