mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
6de992cf71
Original commit message from CVS: Patch by: David Schleef <ds@schleef.org> * libs/gst/net/Makefile.am: Add WIN32_LIBS to libgstnet LIBADD. Fixes #557300.
24 lines
814 B
Makefile
24 lines
814 B
Makefile
lib_LTLIBRARIES = libgstnet-@GST_MAJORMINOR@.la
|
|
|
|
libgstnet_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net
|
|
libgstnet_@GST_MAJORMINOR@_include_HEADERS = \
|
|
gstnet.h \
|
|
gstnetclientclock.h \
|
|
gstnettimepacket.h \
|
|
gstnettimeprovider.h
|
|
|
|
libgstnet_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstnetclientclock.c \
|
|
gstnettimepacket.c \
|
|
gstnettimeprovider.c
|
|
|
|
libgstnet_@GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstnet_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS) $(INET_ATON_LIBS) $(WIN32_LIBS)
|
|
libgstnet_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|
|
CLEANFILES = *.gcno *.gcda *.gcov
|
|
|
|
%.c.gcov: .libs/libgstnet_@GST_MAJORMINOR@_la-%.gcda %.c
|
|
$(GCOV) -b -f -o $^ > $@.out
|
|
|
|
gcov: $(libgstnet_@GST_MAJORMINOR@_la_SOURCES:=.gcov)
|