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 /compat/Makefile.am | |
parent | Initial commit. (diff) | |
download | iperf-d4fc0ba7075ac5439f8ff1b4012be05d2b295448.tar.xz iperf-d4fc0ba7075ac5439f8ff1b4012be05d2b295448.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 'compat/Makefile.am')
-rw-r--r-- | compat/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/compat/Makefile.am b/compat/Makefile.am new file mode 100644 index 0000000..75ac787 --- /dev/null +++ b/compat/Makefile.am @@ -0,0 +1,22 @@ +noinst_LIBRARIES = libcompat.a + +AM_CPPFLAGS = @STRIP_BEGIN@ \ + -I$(top_srcdir)/include \ + -I$(top_builddir)/include \ + @STRIP_END@ + +AM_CXXFLAGS = -Wall +AM_CFLAGS = -Wall +AM_LDFLAGS = -lrt + +libcompat_a_SOURCES = \ + Thread.c \ + error.c \ + delay.c \ + gettimeofday.c \ + gettcpinfo.c \ + inet_ntop.c \ + inet_pton.c \ + signal.c \ + snprintf.c \ + string.c |