diff options
author | jose <jose@zeroc.com> | 2016-06-09 17:44:40 +0200 |
---|---|---|
committer | jose <jose@zeroc.com> | 2016-06-09 17:44:40 +0200 |
commit | 0d8b4956939a3fd2a6b702974bd0c5b83444cac4 (patch) | |
tree | 062be87b70661c33557bd284082750a180abaf0a /php | |
parent | Do not create slice symbolic link (diff) | |
download | ice-0d8b4956939a3fd2a6b702974bd0c5b83444cac4.tar.bz2 ice-0d8b4956939a3fd2a6b702974bd0c5b83444cac4.tar.xz ice-0d8b4956939a3fd2a6b702974bd0c5b83444cac4.zip |
Add NOTEST option to C++/PHP builds
Diffstat (limited to 'php')
-rw-r--r-- | php/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/php/Makefile b/php/Makefile index 35344832dd5..38f40e98378 100644 --- a/php/Makefile +++ b/php/Makefile @@ -17,6 +17,10 @@ ifneq ($(MAKECMDGOALS),install) SUBDIRS := $(SUBDIRS) test endif +ifeq ($(NOTEST),yes) + SUBDIRS := $(filter-out test, $(SUBDIRS)) +endif + INSTALL_SUBDIRS = $(install_phpdir) $(install_libdir) install:: install-common |