2000-01-30 09:03:00 +00:00
|
|
|
|
2002-02-10 17:09:53 +00:00
|
|
|
lib_LTLIBRARIES = libgstreamer.la
|
2002-02-06 18:53:33 +00:00
|
|
|
noinst_LTLIBRARIES = libcothreads.la
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-09-15 22:44:10 +00:00
|
|
|
if HAVE_CPU_I386
|
|
|
|
GSTARCH_SRCS = gstcpuid_i386.s
|
|
|
|
else
|
|
|
|
GSTARCH_SRCS =
|
|
|
|
endif
|
2000-09-21 01:34:34 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
#GST_INSTRUMENT_FLAGS = -finstrument-functions -DGST_ENABLE_FUNC_INSTRUMENTATION
|
|
|
|
|
2001-06-25 06:45:56 +00:00
|
|
|
if GST_DISABLE_LOADSAVE
|
|
|
|
GST_LOADSAVE_SRC =
|
|
|
|
else
|
|
|
|
GST_LOADSAVE_SRC = gstxml.c
|
|
|
|
endif
|
|
|
|
|
2001-06-25 19:19:17 +00:00
|
|
|
if GST_DISABLE_TYPEFIND
|
|
|
|
GST_TYPEFIND_SRC =
|
|
|
|
else
|
|
|
|
GST_TYPEFIND_SRC = gsttypefind.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if GST_DISABLE_PARSE
|
|
|
|
GST_PARSE_SRC =
|
|
|
|
else
|
|
|
|
GST_PARSE_SRC = gstparse.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if GST_DISABLE_AUTOPLUG
|
|
|
|
GST_AUTOPLUG_SRC =
|
2001-06-25 20:36:02 +00:00
|
|
|
GST_AUTOPLUG_DIRS =
|
2001-06-25 19:19:17 +00:00
|
|
|
else
|
|
|
|
GST_AUTOPLUG_SRC = gstautoplug.c
|
2001-06-25 20:36:02 +00:00
|
|
|
GST_AUTOPLUG_DIRS = autoplug
|
2001-06-25 19:19:17 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if GST_DISABLE_TRACE
|
|
|
|
GST_TRACE_SRC =
|
|
|
|
else
|
|
|
|
GST_TRACE_SRC = gsttrace.c
|
|
|
|
endif
|
|
|
|
|
2002-02-10 17:09:53 +00:00
|
|
|
EXTRA_libgstreamer_la_SOURCES = gstcpuid_i386.s gstmarshal.list gstxml.c gsttypefind.c gstparse.c gstautoplug.c gsttrace.c
|
2001-06-28 21:44:33 +00:00
|
|
|
|
2002-02-06 18:53:33 +00:00
|
|
|
# cheap trick to build . first...
|
2001-12-04 22:12:50 +00:00
|
|
|
SUBDIRS = . types elements $(GST_AUTOPLUG_DIRS) schedulers
|
2002-02-05 09:31:57 +00:00
|
|
|
DIST_SUBDIRS = types elements autoplug schedulers
|
2001-06-25 20:36:02 +00:00
|
|
|
|
2002-02-06 18:53:33 +00:00
|
|
|
libcothreads_la_SOURCES = cothreads.c
|
2002-02-10 17:09:53 +00:00
|
|
|
libgstreamer_la_SOURCES = \
|
2001-01-01 21:21:25 +00:00
|
|
|
gst.c \
|
2002-02-06 16:35:16 +00:00
|
|
|
gstmarshal.c \
|
2001-06-25 01:20:11 +00:00
|
|
|
gstobject.c \
|
2001-06-25 19:19:17 +00:00
|
|
|
$(GST_AUTOPLUG_SRC) \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstbin.c \
|
|
|
|
gstbuffer.c \
|
|
|
|
gstbufferpool.c \
|
|
|
|
gstcaps.c \
|
|
|
|
gstclock.c \
|
|
|
|
gstcpu.c \
|
|
|
|
gstelement.c \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstelementfactory.c \
|
2001-10-17 10:21:27 +00:00
|
|
|
gstevent.c \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstextratypes.c \
|
|
|
|
gstinfo.c \
|
|
|
|
gstpad.c \
|
|
|
|
gstpipeline.c \
|
|
|
|
gstplugin.c \
|
2001-08-21 20:16:48 +00:00
|
|
|
gstpluginfeature.c \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstprops.c \
|
2001-01-19 00:01:42 +00:00
|
|
|
gstqueue.c \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstscheduler.c \
|
2002-02-03 20:07:09 +00:00
|
|
|
gstsystemclock.c \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstthread.c \
|
2001-06-25 19:19:17 +00:00
|
|
|
$(GST_TRACE_SRC) \
|
2001-01-01 21:21:25 +00:00
|
|
|
gsttype.c \
|
2001-06-25 19:19:17 +00:00
|
|
|
$(GST_TYPEFIND_SRC) \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstutils.c \
|
2001-08-13 19:03:58 +00:00
|
|
|
gsttimecache.c \
|
2001-06-25 19:19:17 +00:00
|
|
|
$(GST_PARSE_SRC) \
|
2001-06-24 21:18:28 +00:00
|
|
|
$(GSTARCH_SRCS) \
|
2001-06-25 06:45:56 +00:00
|
|
|
$(GST_LOADSAVE_SRC)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-05 01:27:53 +00:00
|
|
|
|
2001-10-24 04:44:30 +00:00
|
|
|
BUILT_SOURCES = gstmarshal.h gstmarshal.c
|
|
|
|
|
2001-06-28 23:58:54 +00:00
|
|
|
# Generate both marshal files together. Makes dependency work easier.
|
2001-06-25 19:59:33 +00:00
|
|
|
gstmarshal.h: gstmarshal.list
|
2002-01-29 11:17:44 +00:00
|
|
|
glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h
|
2001-06-25 19:59:33 +00:00
|
|
|
|
|
|
|
gstmarshal.c: gstmarshal.list
|
2001-06-29 09:39:58 +00:00
|
|
|
echo "#include \"glib-object.h\"" >gstmarshal.c
|
2001-09-14 21:57:47 +00:00
|
|
|
echo "#include \"gstlog.h\"" >> gstmarshal.c
|
2001-09-17 07:33:04 +00:00
|
|
|
echo "#include \"gstmarshal.h\"" >> gstmarshal.c
|
2002-01-29 11:17:44 +00:00
|
|
|
glib-genmarshal --body --prefix=gst_marshal $(srcdir)/gstmarshal.list >> gstmarshal.c
|
2001-06-25 19:59:33 +00:00
|
|
|
|
|
|
|
##### end built sources #####
|
|
|
|
|
2001-06-28 23:58:54 +00:00
|
|
|
# Don't want the generated marshal files in the dist
|
|
|
|
dist-hook:
|
|
|
|
rm -f $(distdir)/gstmarshal.c $(distdir)/gstmarshal.h
|
|
|
|
# Clean generated files
|
|
|
|
distclean-local:
|
2002-01-29 12:08:42 +00:00
|
|
|
rm -f $(top_builddir)/gst/gstmarshal.c $(top_builddir)/gst/gstmarshal.h
|
2001-06-05 01:27:53 +00:00
|
|
|
|
2002-02-11 15:35:42 +00:00
|
|
|
libgstreamerincludedir = $(includedir)/gst
|
2002-02-10 17:09:53 +00:00
|
|
|
libgstreamerinclude_HEADERS = \
|
2001-01-01 21:21:25 +00:00
|
|
|
gst.h \
|
2001-10-17 10:21:27 +00:00
|
|
|
gstconfig.h \
|
2002-02-06 16:35:16 +00:00
|
|
|
gstmarshal.h \
|
2001-06-25 01:20:11 +00:00
|
|
|
gstobject.h \
|
2001-05-25 21:00:07 +00:00
|
|
|
gsttypes.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstautoplug.h \
|
|
|
|
gstbin.h \
|
|
|
|
gstbuffer.h \
|
|
|
|
gstbufferpool.h \
|
|
|
|
gstcaps.h \
|
|
|
|
gstclock.h \
|
|
|
|
gstcpu.h \
|
2001-10-17 10:21:27 +00:00
|
|
|
gstdata.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstelement.h \
|
2001-08-29 22:56:12 +00:00
|
|
|
gstevent.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstextratypes.h \
|
|
|
|
gstinfo.h \
|
|
|
|
gstlog.h \
|
|
|
|
gstpad.h \
|
|
|
|
gstpipeline.h \
|
|
|
|
gstplugin.h \
|
2001-08-21 20:16:48 +00:00
|
|
|
gstpluginfeature.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstprops.h \
|
2001-01-19 00:01:42 +00:00
|
|
|
gstqueue.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstscheduler.h \
|
2002-02-03 20:07:09 +00:00
|
|
|
gstsystemclock.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstthread.h \
|
|
|
|
gsttrace.h \
|
|
|
|
gsttype.h \
|
2001-01-19 00:01:42 +00:00
|
|
|
gsttypefind.h \
|
2001-01-01 21:21:25 +00:00
|
|
|
gstutils.h \
|
2001-08-13 19:03:58 +00:00
|
|
|
gsttimecache.h \
|
2001-01-07 04:00:30 +00:00
|
|
|
gstparse.h \
|
2001-06-24 21:18:28 +00:00
|
|
|
gstversion.h \
|
|
|
|
gstxml.h
|
2001-01-01 21:21:25 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
gst_private.h \
|
|
|
|
gstarch.h \
|
2002-02-11 10:27:04 +00:00
|
|
|
gstpropsprivate.h \
|
|
|
|
cothreads.h
|
2000-09-17 22:08:09 +00:00
|
|
|
|
2002-02-10 17:09:53 +00:00
|
|
|
libgstreamer_la_CFLAGS = -D_GNU_SOURCE -DGST_CONFIG_DIR=\""$(GST_CONFIG_DIR)"\" \
|
2002-01-02 12:23:26 +00:00
|
|
|
$(LIBGST_CFLAGS) \
|
2001-09-13 21:16:25 +00:00
|
|
|
-D_GNU_SOURCE \
|
|
|
|
-DG_LOG_DOMAIN=g_log_domain_gstreamer \
|
2002-02-06 16:35:16 +00:00
|
|
|
-DGST_CONFIG_DIR=\""$(GST_CONFIG_DIR)"\"
|
2001-09-13 21:16:25 +00:00
|
|
|
|
2002-02-06 18:53:33 +00:00
|
|
|
# the compiler shoots cothreads.c in the head at -O6
|
2002-02-10 17:09:53 +00:00
|
|
|
libcothreads_la_CFLAGS = $(libgstreamer_la_CFLAGS) -O2
|
2001-12-04 22:12:50 +00:00
|
|
|
|
2002-02-11 01:38:55 +00:00
|
|
|
libgstreamer_la_LIBADD = $(LIBGST_LIBS)
|
2002-02-10 17:09:53 +00:00
|
|
|
libgstreamer_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-28 21:44:33 +00:00
|
|
|
EXTRA_DIST = ROADMAP
|