iperf3-tls/src/Makefile

18 lines
306 B
Makefile
Raw Normal View History

2009-02-24 06:22:58 +00:00
CFLAGS=-g -Wall
OBJS=main.o timer.o net.o tcp_window_size.o
all: iperf
iperf: $(OBJS)
$(CC) -pthread -o iperf $(OBJS)
#$(CC) -pg -pthread -o iperf-profile $(OBJS)
test: t_timer
./t_timer
t_timer: timer.o t_timer.o
$(CC) -o t_timer timer.o t_timer.o
clean:
rm -f *.o iperf iperf-profile t_timer