This is used when one wants to build all binaries, including those that are used only for testing. A handy shortcut to make sure all binaries can be built.
Signed-off-by: Iustin Pop <[email protected]> --- Makefile.am | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index 85c38f2..3314aa2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1684,6 +1684,11 @@ gitignore-check: exit 1; \ fi +# Target that builds all binaries (including those that are not +# rebuilt except when running the tests) +.PHONY: really-all +really-all: all $(check_SCRIPTS) $(haskell_tests) + # we don't need the ancient implicit rules: %: %,v %: RCS/%,v -- 1.7.7.3
