Skip to content
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.

Commit

Permalink
Add new make target check-submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuck committed Jun 4, 2011
1 parent d5d2b02 commit f606fdb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ copydir = @@cp -R "$(1)" "$(2)" $(QUIET) && find $(RELEASE_DIR) -type f \( -inam
release: release-files zipped examples
@@echo "Release Created, see $(RELEASE_DIR)"

check: check-lint check-closure check-globals check-summary
check: check-lint check-closure check-globals check-submodules check-summary

release-dir: clean
@@mkdir $(RELEASE_DIR)
Expand Down Expand Up @@ -117,6 +117,10 @@ check-tests:
check-release: closure
$(RUNTESTS) -s -l $(PJS_RELEASE_MIN)

check-submodules:
@@echo "\nChecking for git submodules"
@@git submodule status | awk '/^-/ { print $$2, "not found" } /^ / { print $$2, "included" }'

check-summary:
$(RUNTESTS) -s

Expand Down

0 comments on commit f606fdb

Please sign in to comment.