mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
a970a32304
Original commit message from CVS: * configure.ac: Pull in librfb from my CVS tree, because it is too small and annoying to be separate. Move rfbsrc plugin to gst/. * ext/Makefile.am: * ext/librfb/Makefile.am: * ext/librfb/gstrfbsrc.c: * gst/librfb/Makefile.am: * gst/librfb/gstrfbsrc.c: * gst/librfb/rfb.c: * gst/librfb/rfb.h: * gst/librfb/rfbbuffer.c: * gst/librfb/rfbbuffer.h: * gst/librfb/rfbbytestream.c: * gst/librfb/rfbbytestream.h: * gst/librfb/rfbcontext.h: * gst/librfb/rfbdecoder.c: * gst/librfb/rfbdecoder.h: * gst/librfb/rfbutil.h:
30 lines
580 B
Makefile
30 lines
580 B
Makefile
|
|
# please keep librfb easily extractable
|
|
|
|
noinst_LTLIBRARIES = librfb.la
|
|
plugin_LTLIBRARIES = libgstrfbsrc.la
|
|
|
|
libgstrfbsrc_la_SOURCES = gstrfbsrc.c
|
|
libgstrfbsrc_la_CFLAGS = $(GST_CFLAGS) -I/usr/local/include/librfb-0.1
|
|
libgstrfbsrc_la_LIBADD = librfb.la
|
|
libgstrfbsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
|
noinst_HEADERS = \
|
|
rfb.h \
|
|
rfbdecoder.h \
|
|
rfbbuffer.h \
|
|
rfbbytestream.h
|
|
|
|
librfb_la_SOURCES = \
|
|
rfb.h \
|
|
rfbdecoder.c \
|
|
rfbdecoder.h \
|
|
rfbbuffer.c \
|
|
rfbbuffer.h \
|
|
rfbbytestream.c \
|
|
rfbbytestream.h
|
|
|
|
librfb_la_CFLAGS = $(RFB_CFLAGS)
|
|
librfb_la_LIBADD = $(GLIB_LIBS)
|
|
|