mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 13:26:01 +03:00
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:
parent
e0926fee37
commit
88ca736543
@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
bin_PROGRAMS = test
|
||||
noinst_PROGRAMS = test
|
||||
|
||||
test_SOURCES = \
|
||||
test.c
|
||||
|
@ -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
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
bin_PROGRAMS = benchmark
|
||||
noinst_PROGRAMS = benchmark
|
||||
|
||||
benchmark_SOURCES = \
|
||||
benchmark.cc
|
||||
|
@ -8,7 +8,7 @@ MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
|
||||
|
||||
bin_PROGRAMS = afl_fuzzer
|
||||
noinst_PROGRAMS = afl_fuzzer
|
||||
|
||||
afl_fuzzer_SOURCES = \
|
||||
afl_fuzzer.cc
|
||||
|
Loading…
x
Reference in New Issue
Block a user