2003-10-10 12:24:20 +00:00
|
|
|
libgstinterfacesincludedir = \
|
|
|
|
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/mixer
|
2003-09-13 01:20:04 +00:00
|
|
|
|
2003-10-10 12:24:20 +00:00
|
|
|
libgstinterfacesinclude_HEADERS = \
|
|
|
|
mixer.h \
|
|
|
|
mixertrack.h
|
2003-09-13 01:20:04 +00:00
|
|
|
|
2003-10-30 02:36:42 +00:00
|
|
|
noinst_LTLIBRARIES = libgstmixer.la
|
2003-09-13 01:20:04 +00:00
|
|
|
|
2003-10-10 12:24:20 +00:00
|
|
|
libgstmixer_la_SOURCES = \
|
|
|
|
mixer.c \
|
2003-12-07 12:11:30 +00:00
|
|
|
mixertrack.c \
|
|
|
|
mixermarshal.c
|
2003-10-30 02:36:42 +00:00
|
|
|
libgstmixer_la_CFLAGS = $(GST_CFLAGS)
|
2003-12-07 12:11:30 +00:00
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
mixermarshal.c \
|
|
|
|
mixermarshal.h
|
|
|
|
built_headers = \
|
|
|
|
mixermarshal.h
|
|
|
|
|
|
|
|
EXTRA_DIST = mixermarshal.list
|
|
|
|
|
2003-12-13 21:46:47 +00:00
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
|
2003-12-07 12:11:30 +00:00
|
|
|
mixermarshal.h: mixermarshal.list
|
|
|
|
glib-genmarshal --header --prefix=gst_mixer_marshal $^ > mixermarshal.h.tmp
|
|
|
|
mv mixermarshal.h.tmp mixermarshal.h
|
|
|
|
|
|
|
|
mixermarshal.c: mixermarshal.list
|
|
|
|
echo "#include \"mixermarshal.h\"" >> mixermarshal.c.tmp
|
|
|
|
glib-genmarshal --body --prefix=gst_mixer_marshal $^ >> mixermarshal.c.tmp
|
|
|
|
mv mixermarshal.c.tmp mixermarshal.c
|