From 29fd174ec68006bc35d7820b3172c73dd8d2b623 Mon Sep 17 00:00:00 2001 From: Jonathan L Long Date: Sat, 19 Jul 2014 18:51:15 -0700 Subject: [PATCH] add an "everything" target to make for comprehensive build testing The everything target builds all components, checks warnings, runs lint, and runs tests. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 109894d..b25d1ba 100644 --- a/Makefile +++ b/Makefile @@ -295,7 +295,9 @@ SUPERCLEAN_EXTS := .so .a .o .bin .testbin .pb.cc .pb.h _pb2.py .cuo ############################## .PHONY: all test clean linecount lint tools examples $(DIST_ALIASES) \ py mat py$(PROJECT) mat$(PROJECT) proto runtest \ - superclean supercleanlist supercleanfiles warn + superclean supercleanlist supercleanfiles warn everything + +everything: all py$(PROJECT) mat$(PROJECT) test warn lint runtest all: $(NAME) $(STATIC_NAME) tools examples -- 2.7.4