https://github.com/uds-psl/coq-library-undecidability
Raw File
Tip revision: 46b354bd2f5a1b33efc961edf45ac565562d016e authored by Dominique Larchey-Wendling on 03 April 2020, 12:42:19 UTC
update CeCILL license to 2.1
Tip revision: 46b354b
Makefile

all:
	+make -C theories all

deps:
	+make -C external all

clean:
	+make -C theories clean

realclean:
	+make -C external clean
	+make -C theories clean

html:
	+make -C theories html

.PHONY: all html clean realclean
back to top