diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-06-24 14:01:54 +0200 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-06-26 20:53:56 +0200 |
commit | 4a9c85b3f8c4e91b08bf814a048f9cdf9ffe31f9 (patch) | |
tree | 8d0a2757082b4d1c1a51ec62ec85222b2ede7244 | |
parent | baf87aacce6d75f9b01156ce085ef4487d46a406 (diff) |
reenable unitcheck and slowcheck as top level targets
Change-Id: Idb46ebcb427522c74632a1813afcbb841fb61243
-rw-r--r-- | Makefile.top | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.top b/Makefile.top index 4e8c97617350..d904916a421a 100644 --- a/Makefile.top +++ b/Makefile.top @@ -493,6 +493,12 @@ check: dev-install subsequentcheck subsequentcheck :| $(if $(filter-out subsequentcheck,$(MAKECMDGOALS)),dev-install) $(GNUMAKE) -j $(GMAKE_PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.post $@ +unitcheck: + $(GNUMAKE) -j $(GMAKE_PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.post $@ + +slowcheck: + $(GNUMAKE) -j $(GMAKE_PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.post $@ + debugrun: $(GNUMAKE) -j $(GMAKE_PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.post $@ |