Oops, -lm is still needed by cjson for floor(). Still worth getting

rid of pow() though.
This commit is contained in:
jef 2012-10-26 07:45:28 -07:00
parent ea71aaeaee
commit 53a87a0b9d
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ libiperf_a_SOURCES = \
# Specify the sources and various flags for the iperf binary
iperf3_SOURCES = main.c
iperf3_CFLAGS = -g -Wall
iperf3_LDADD = libiperf.a
iperf3_LDADD = libiperf.a -lm
iperf3_LDFLAGS =
# Specify the sources and various flags for the profiled iperf binary. This
@ -45,7 +45,7 @@ iperf3_profile_SOURCES = main.c \
$(libiperf_a_SOURCES)
iperf3_profile_CFLAGS = -pg -Wall
iperf3_profile_LDADD = libiperf.a
iperf3_profile_LDADD = libiperf.a -lm
iperf3_profile_LDFLAGS =
# Specify the sources and various flags for the test cases

View File

@ -268,7 +268,7 @@ libiperf_a_SOURCES = \
# Specify the sources and various flags for the iperf binary
iperf3_SOURCES = main.c
iperf3_CFLAGS = -g -Wall
iperf3_LDADD = libiperf.a
iperf3_LDADD = libiperf.a -lm
iperf3_LDFLAGS =
# Specify the sources and various flags for the profiled iperf binary. This
@ -277,7 +277,7 @@ iperf3_profile_SOURCES = main.c \
$(libiperf_a_SOURCES)
iperf3_profile_CFLAGS = -pg -Wall
iperf3_profile_LDADD = libiperf.a
iperf3_profile_LDADD = libiperf.a -lm
iperf3_profile_LDFLAGS =
# Specify the sources and various flags for the test cases