comparison TOOLS/Makefile @ 26355:a8fbc0224b81

Remove Win32 linker option for netstream. Other winsock using code does not need it, it should be set from configure and the reason why it was set in the first place has been lost in the mists of time.
author diego
date Fri, 11 Apr 2008 07:37:27 +0000
parents 3e3146bd4598
children edc34d083665
comparison
equal deleted inserted replaced
26354:8a43b830b4f5 26355:a8fbc0224b81
57 ../libavutil/libavutil.a \ 57 ../libavutil/libavutil.a \
58 ../m_option.o \ 58 ../m_option.o \
59 ../m_struct.o \ 59 ../m_struct.o \
60 $(COMMON_LIBS) 60 $(COMMON_LIBS)
61 61
62 ifeq ($(TARGET_WIN32),yes)
63 NETSTREAM_DEPS += -lwsock32
64 endif
65
66 netstream: netstream.o $(NETSTREAM_DEPS) 62 netstream: netstream.o $(NETSTREAM_DEPS)
67 $(CC) $(CFLAGS) -o $@ $^ 63 $(CC) $(CFLAGS) -o $@ $^
68 64
69 clean distclean: 65 clean distclean:
70 rm -f *.o *~ $(OBJS) 66 rm -f *.o *~ $(OBJS)