mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
76c3b66b08
Original commit message from CVS: fixes bug 83427
14 lines
389 B
Makefile
14 lines
389 B
Makefile
## we need to specify the plugindir if we want libtool to build .so files ...
|
|
plugindir=$(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstexample.la
|
|
|
|
libgstexample_la_SOURCES = example.c
|
|
libgstexample_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = example.h
|
|
|
|
## ... but we don't want them installed so we override the install target
|
|
install:
|
|
@true
|