https://github.com/EasyCrypt/easycrypt
Revision 58aaed42d3666b7c1bfcd2812960ab5f3ce8e53e authored by AntoineSere on 20 April 2020, 17:02:04 UTC, committed by GitHub on 20 April 2020, 17:02:04 UTC
Added two useful lemmas to Quotient.ec
2 parent s acfd4ea + ce4d827
Raw File
Tip revision: 58aaed42d3666b7c1bfcd2812960ab5f3ce8e53e authored by AntoineSere on 20 April 2020, 17:02:04 UTC
Merge pull request #42 from AntoineSere/eqvquo
Tip revision: 58aaed4
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