mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
d6258153e0
Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
21 lines
464 B
Makefile
21 lines
464 B
Makefile
|
|
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstidentity2.la
|
|
|
|
GOB_FILES_ID = gst-identity2.c gst-identity2.h gst-identity2-private.h
|
|
|
|
BUILT_SOURCES = \
|
|
$(GOB_FILES_ID)
|
|
|
|
libgstidentity2_la_SOURCES = gst-identity2.gob $(GOB_FILES_ID)
|
|
libgstidentity2_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstidentity2_la_LIBADD =
|
|
|
|
%.c %.h %-private.h: %.gob
|
|
gob $<
|
|
|
|
CLEANFILES = $(GOB_FILES_ID)
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(CLEANFILES)
|