mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
3bfd8bf0e8
Original commit message from CVS: * gst/librfb/Makefile.am: Testing stuff before committing is for wimps... and people with fast machines. Fix stupid mistake.
30 lines
576 B
Makefile
30 lines
576 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
|
|
|
|
librfb_la_CFLAGS = $(GST_CFLAGS) -I$(srcdir)/..
|
|
librfb_la_LIBADD = $(GLIB_LIBS)
|
|
|