aboutsummaryrefslogtreecommitdiff
path: root/example/m4/configure.m4
blob: 270aa89cb9afa8fb235f9aea00bc55526de89a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
##########################################################################
# Enable/disable test-example
##########################################################################
test_example=no
AC_ARG_ENABLE([test-example],
    [  --enable-test-example   run basic test against examples],
    [if test "x$enableval" = "xyes"; then
        test_example=yes
     else
        test_example=no
    fi])

AC_CONFIG_FILES([example/classifier/Makefile
		 example/generator/Makefile
		 example/hello/Makefile
		 example/ipsec/Makefile
		 example/ipfragreass/Makefile
		 example/l2fwd_simple/Makefile
		 example/l3fwd/Makefile
		 example/packet/Makefile
		 example/switch/Makefile
		 example/time/Makefile
		 example/timer/Makefile
		 example/traffic_mgmt/Makefile
		 example/ddf_ifs/Makefile
		 example/ddf_app/Makefile
		 example/Makefile])