mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
8da28910bc
Original commit message from CVS: * s/filter/plugin/ * add $(GST_LIBS) to all plugins * move Makefile.am things around to a mostly standard layout * remove HTTP flags/libs from elements since http element moved
15 lines
454 B
Makefile
15 lines
454 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstbytestream.la
|
|
noinst_LTLIBRARIES = libgstbstest.la
|
|
|
|
libgstbytestreamincludedir = $(includedir)/gst/bytestream
|
|
libgstbytestreaminclude_HEADERS = bytestream.h
|
|
|
|
libgstbytestream_la_SOURCES = bytestream.c
|
|
libgstbytestream_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstbytestream_la_LIBADD = $(GST_LIBS)
|
|
|
|
libgstbstest_la_SOURCES = bstest.c
|
|
libgstbstest_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstbstest_la_LIBADD = $(GST_LIBS)
|