diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:20:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:20:54 +0000 |
commit | 7c720bec5600a9e607c875c670ca30ed351fa4ba (patch) | |
tree | c38c9bedf07616180feee6b91a1dbea038500b54 /Makefile.am | |
parent | Initial commit. (diff) | |
download | iperf-upstream/2.1.9+dfsg.tar.xz iperf-upstream/2.1.9+dfsg.zip |
Adding upstream version 2.1.9+dfsg.upstream/2.1.9+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..1251caa --- /dev/null +++ b/Makefile.am @@ -0,0 +1,18 @@ +AUTOMAKE_OPTIONS = foreign +SUBDIRS = compat doc include src man + +AM_CPPFLAGS = @STRIP_BEGIN@ \ + -I$(top_srcdir)/include \ + -I$(top_builddir)/include \ + @STRIP_END@ + +AM_CXXFLAGS = -Wall +AM_FLAGS = -Wall + +EXTRA_DIST = t +TEST_EXTENSIONS = .sh +TESTS = t/t1_tcp.sh t/t2_tcp6.sh t/t3_udp.sh t/t4_udp6.sh \ + t/t5_f.sh t/t6_filelong.sh t/t7_n.sh t/t8_num.sh \ + t/t9_parallel.sh t/t10_dualtest.sh t/t11_tradeoff.sh \ + t/t12_full_duplex.sh t/t13_reverse.sh + |