mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
24 lines
756 B
Makefile
24 lines
756 B
Makefile
# please keep librfb easily extractable
|
|
|
|
plugin_LTLIBRARIES = libgstrfbsrc.la
|
|
|
|
libgstrfbsrc_la_SOURCES = gstrfbsrc.c \
|
|
rfbdecoder.c \
|
|
d3des.c
|
|
libgstrfbsrc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(X11_CFLAGS) \
|
|
$(GIO_CFLAGS)
|
|
libgstrfbsrc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(X11_LIBS) \
|
|
$(GIO_LIBS)
|
|
libgstrfbsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GIO_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
rfbdecoder.h \
|
|
gstrfbsrc.h \
|
|
d3des.h
|