2003-10-10 12:47:42 +00:00
|
|
|
libgstinterfacesincludedir = \
|
|
|
|
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/tuner
|
|
|
|
|
|
|
|
libgstinterfacesinclude_HEADERS = \
|
|
|
|
tuner.h \
|
|
|
|
tunernorm.h \
|
|
|
|
tunerchannel.h
|
|
|
|
|
2003-10-30 02:36:42 +00:00
|
|
|
noinst_LTLIBRARIES = libgsttuner.la
|
2003-10-10 12:47:42 +00:00
|
|
|
|
|
|
|
libgsttuner_la_SOURCES = \
|
|
|
|
tuner.c \
|
|
|
|
tunernorm.c \
|
2003-12-07 12:11:30 +00:00
|
|
|
tunerchannel.c \
|
|
|
|
tunermarshal.c
|
2003-10-30 02:36:42 +00:00
|
|
|
libgsttuner_la_CFLAGS = $(GST_CFLAGS)
|
|
|
|
|
2003-12-07 12:11:30 +00:00
|
|
|
BUILT_SOURCES = \
|
|
|
|
tunermarshal.c \
|
|
|
|
tunermarshal.h
|
|
|
|
built_headers = \
|
|
|
|
tunermarshal.h
|
|
|
|
|
|
|
|
EXTRA_DIST = tunermarshal.list
|
|
|
|
|
2003-12-13 21:46:47 +00:00
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
|
2003-12-07 12:11:30 +00:00
|
|
|
tunermarshal.h: tunermarshal.list
|
|
|
|
glib-genmarshal --header --prefix=gst_tuner_marshal $^ > tunermarshal.h.tmp
|
|
|
|
mv tunermarshal.h.tmp tunermarshal.h
|
|
|
|
|
|
|
|
tunermarshal.c: tunermarshal.list
|
|
|
|
echo "#include \"tunermarshal.h\"" >> tunermarshal.c.tmp
|
|
|
|
glib-genmarshal --body --prefix=gst_tuner_marshal $^ >> tunermarshal.c.tmp
|
|
|
|
mv tunermarshal.c.tmp tunermarshal.c
|