Fix mistakes in cptest asserts
[oweals/dinit.git] / Makefile
index 2f9b70439907d226500f52712022f9e56695d3c6..9cd695d75ac857d155f48b295a278ad9f500a917 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,18 @@
 
 all:
        $(MAKE) -C src all
+       $(MAKE) -C doc/manpages all
        @echo "***"
-       @echo "*** Build complete; use \"make check\" to run tests or \"make install\" to install."
+       @echo "*** Build complete; use \"make check\" to run unit tests, \"make check-igr\" for"
+       @echo "*** integration tests, or \"make install\" to install."
        @echo "***"
 
 check:
        $(MAKE) -C src check
 
+check-igr:
+       $(MAKE) -C src check-igr
+
 run-cppcheck:
        $(MAKE) -C src run-cppcheck
 
@@ -18,3 +23,4 @@ install:
 
 clean:
        $(MAKE) -C src clean
+       $(MAKE) -C doc/manpages clean