diff options
author | Andres Mejia <amejia004@gmail.com> | 2012-06-17 19:14:53 -0400 |
---|---|---|
committer | Andres Mejia <amejia004@gmail.com> | 2012-06-17 19:14:53 -0400 |
commit | 528563adf14355a1b7572b02e8f56433503f3349 (patch) | |
tree | 2bd76eea40c1e2b495fbed910597836e8179b40c /Makefile.in | |
parent | 9e6ab842e2443cf39e510af60ba2436afce9228c (diff) |
Add 'check' target used in compiling/running testsuite.
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index c19f7721e3..a491dae542 100755 --- a/Makefile.in +++ b/Makefile.in @@ -198,6 +198,8 @@ FINAL_TARGETS=xbmc.bin skins xbmc-xrandr endif FINAL_TARGETS+=Makefile externals +CHECK_DIRS = xbmc/utils/test + all : $(FINAL_TARGETS) @echo '-----------------------' @echo 'XBMC built successfully' @@ -486,3 +488,6 @@ clean-codecs: clean-dvdpcodecs clean-papcodecs clean-externals: clean-codecs clean-eventclients clean-xbmctex clean-libs \ clean-screensavers clean-visualisations + +check: + for d in $(CHECK_DIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d $@; fi; done |