mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
5e6df56d96
Original commit message from CVS: some disting and build fixes
31 lines
591 B
Makefile
31 lines
591 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$(srcdir)/..
|
|
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 \
|
|
gstrfbsrc.c
|
|
|
|
librfb_la_CFLAGS = $(GST_CFLAGS) -I$(srcdir)/..
|
|
librfb_la_LIBADD = $(GLIB_LIBS)
|
|
|