diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | Makefile.build | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -32,6 +32,8 @@ export FIND_VCS_CLAUSE:='(' \ -name 'debian' -or \ -name "$${GIT_DIR}" \ ')' -prune -type f -or +export PRUNE_CHECKER := -wholename ./checker/\* -prune -or + FIND_PRINTF_P:=-print | sed 's|^\./||' export YACCFILES:=$(shell find . $(FIND_VCS_CLAUSE) '(' -name '*.mly' ')' $(FIND_PRINTF_P)) diff --git a/Makefile.build b/Makefile.build index 41e91f0af5..bba84709bd 100644 --- a/Makefile.build +++ b/Makefile.build @@ -504,7 +504,7 @@ install-pcoq-manpages: validate:: $(BESTCHICKEN) $(ALLVO) $(SHOW)'COQCHK <theories & contrib>' - $(BESTCHICKEN) -boot -o -m $(ALLMODS) + $(HIDE)$(BESTCHICKEN) -boot -o -m $(ALLMODS) check:: world cd test-suite; \ @@ -669,7 +669,7 @@ install-library: ifeq ($(BEST),opt) $(INSTALLLIB) $(LINKCMX) $(FULLCOQLIB) endif - find . $(FIND_VCS_CLAUSE) -name \*.cmi -exec $(INSTALLLIB) {} $(FULLCOQLIB) \; + find . $(FIND_VCS_CLAUSE) $(PRUNE_CHECKER) -name \*.cmi -exec $(INSTALLLIB) {} $(FULLCOQLIB) \; # csdpcert is not meant to be directly called by the user; we install # it with libraries -$(MKDIR) -p $(FULLCOQLIB)/contrib/micromega |
