Avoids the installation of test utilities during `make install'

Those utilities are not interesting for the general usage, most
likekly it will be used by very retrict number of people whom are
likely to compile ModSecurity by their selfs.

This issue was reported on #1083
This commit is contained in:
Felipe Zimmerle 2016-03-18 14:26:41 -03:00
parent e0926fee37
commit 88ca736543
4 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
bin_PROGRAMS = test
noinst_PROGRAMS = test
test_SOURCES = \
test.c

View File

@ -17,11 +17,13 @@ MAINTAINERCLEANFILES = \
Makefile.in
bin_PROGRAMS = unit-tests regression-tests rules-optimization
bin_PROGRAMS =
noinst_PROGRAMS =
# unit_tests
noinst_PROGRAMS += unit_tests
unit_tests_SOURCES = \
unit/unit.cc \
unit/unit_test.cc
@ -51,6 +53,7 @@ unit_tests_CPPFLAGS = \
# regression
noinst_PROGRAMS += regression_tests
regression_tests_SOURCES = \
regression/regression.cc \
regression/regression_test.cc \
@ -81,6 +84,8 @@ regression_tests_CPPFLAGS = \
# optimization
noinst_PROGRAMS += rules_optimization
rules_optimization_SOURCES = \
optimization/optimization.cc

View File

@ -1,6 +1,6 @@
bin_PROGRAMS = benchmark
noinst_PROGRAMS = benchmark
benchmark_SOURCES = \
benchmark.cc

View File

@ -8,7 +8,7 @@ MAINTAINERCLEANFILES = \
Makefile.in
bin_PROGRAMS = afl_fuzzer
noinst_PROGRAMS = afl_fuzzer
afl_fuzzer_SOURCES = \
afl_fuzzer.cc