Don't need -lm in Makefile any more.

This commit is contained in:
Jef Poskanzer 2013-02-11 22:04:52 -08:00
parent f19a68d53a
commit 2724cb3139
2 changed files with 6 additions and 6 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 -lm
iperf3_LDADD = libiperf.a
iperf3_LDFLAGS =
# Specify the sources and various flags for the profiled iperf binary. This
@ -44,8 +44,8 @@ iperf3_LDFLAGS =
iperf3_profile_SOURCES = main.c \
$(libiperf_a_SOURCES)
iperf3_profile_CFLAGS = -pg -Wall
iperf3_profile_LDADD = libiperf.a -lm
iperf3_profile_CFLAGS = -pg -g -Wall
iperf3_profile_LDADD = libiperf.a
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 -lm
iperf3_LDADD = libiperf.a
iperf3_LDFLAGS =
# Specify the sources and various flags for the profiled iperf binary. This
@ -276,8 +276,8 @@ iperf3_LDFLAGS =
iperf3_profile_SOURCES = main.c \
$(libiperf_a_SOURCES)
iperf3_profile_CFLAGS = -pg -Wall
iperf3_profile_LDADD = libiperf.a -lm
iperf3_profile_CFLAGS = -pg -g -Wall
iperf3_profile_LDADD = libiperf.a
iperf3_profile_LDFLAGS =
# Specify the sources and various flags for the test cases