mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
7869189d6a
Original commit message from CVS: 2006-10-05 Zaheer Abbas Merali <zaheerabbas at merali dot org> Patch by: Josep Torre Valles <josep@fluendo.com> * common/m4/gst-error.m4: * configure.ac: * libs/gst/net/Makefile.am: Fix a compilation issue with Forte on Solaris. inet_aton is in libresolv.
24 lines
800 B
Makefile
24 lines
800 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)
|
|
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)
|