Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ help:
@echo " check_conformance_errors - Check for conformance and show errors"
@echo " check_liquid_syntax - Check the liquid syntax of the templates"
@echo " check_html_output - Check the HTML output using tidy"
@echo " checklinks - Runs html-proofer to check for broken links."
@echo " validate - Runs html5validator to check for HTML5 compliance."
@echo " checklinks - Runs html-proofer to check for broken links"
@echo " validate - Runs html5validator to check for HTML5 compliance"
@echo " update_repos - Pull the latest changes for all git repos under _repos"

.PHONY: ruby_deps
ruby_deps: .jekyll-cache/ruby_deps
Expand Down Expand Up @@ -71,6 +72,13 @@ $(REPOSITORIES):
.PHONY: repos
repos: $(REPOSITORIES)

.PHONY: update_repos
update_repos:
for repo in $(REPOSITORIES); do \
echo "======== updating $$repo"; \
(cd $$repo && git pull --rebase); \
done

# Microkit

MICROKIT_REPO = _repos/sel4/microkit
Expand Down
Loading