2000-01-30 09:03:00 +00:00
|
|
|
# cheap trick to build . first...
|
|
|
|
SUBDIRS = . types meta elements xml
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libgst.la
|
|
|
|
|
|
|
|
GSTOBJECT_SRCS = \
|
|
|
|
gstobject.c
|
|
|
|
GSTOBJECT_INCLUDES = \
|
|
|
|
gstobject.h
|
|
|
|
|
2000-09-15 22:44:10 +00:00
|
|
|
if HAVE_CPU_I386
|
|
|
|
GSTARCH_SRCS = gstcpuid_i386.s
|
|
|
|
else
|
|
|
|
if HAVE_CPU_PPC
|
2000-09-16 00:59:12 +00:00
|
|
|
GSTARCH_SRCS =
|
2000-09-15 22:44:10 +00:00
|
|
|
else
|
|
|
|
GSTARCH_SRCS =
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
libgst_la_SOURCES = \
|
|
|
|
gst.c \
|
|
|
|
$(GSTOBJECT_SRCS) \
|
|
|
|
gstpad.c \
|
|
|
|
gstbuffer.c \
|
2000-08-14 10:55:35 +00:00
|
|
|
gstbufferpool.c \
|
2000-04-09 21:36:56 +00:00
|
|
|
gstclock.c \
|
2000-09-12 18:13:48 +00:00
|
|
|
gstcpu.c \
|
2000-09-15 23:04:31 +00:00
|
|
|
$(GSTARCH_SRCS) \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstelement.c \
|
|
|
|
gstelementfactory.c \
|
|
|
|
gstbin.c \
|
|
|
|
gstpipeline.c \
|
|
|
|
gstthread.c \
|
|
|
|
gstsrc.c \
|
|
|
|
gstfilter.c \
|
|
|
|
gstsink.c \
|
|
|
|
gstconnection.c \
|
|
|
|
gsttype.c \
|
|
|
|
gstplugin.c \
|
|
|
|
gstutils.c \
|
|
|
|
gsttrace.c \
|
|
|
|
gstmeta.c \
|
|
|
|
gsttee.c \
|
|
|
|
gstxml.c \
|
|
|
|
cothreads.c
|
|
|
|
|
|
|
|
libgstincludedir = $(includedir)/gst
|
|
|
|
libgstinclude_HEADERS = \
|
|
|
|
gst.h \
|
|
|
|
gstlog.h \
|
|
|
|
$(GSTOBJECT_INCLUDES) \
|
|
|
|
gstpad.h \
|
|
|
|
gstbuffer.h \
|
2000-08-14 10:55:35 +00:00
|
|
|
gstbufferpool.h \
|
2000-04-09 21:36:56 +00:00
|
|
|
gstclock.h \
|
2000-09-12 18:13:48 +00:00
|
|
|
gstcpu.h \
|
2000-09-16 00:59:12 +00:00
|
|
|
gstarch.h \
|
|
|
|
gsti386.h \
|
|
|
|
gstppc.h \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstelement.h \
|
|
|
|
gstbin.h \
|
|
|
|
gstpipeline.h \
|
|
|
|
gstthread.h \
|
|
|
|
gstsrc.h \
|
|
|
|
gstfilter.h \
|
|
|
|
gstsink.h \
|
|
|
|
gstconnection.h \
|
|
|
|
gsttype.h \
|
|
|
|
gstplugin.h \
|
|
|
|
gstutils.h \
|
|
|
|
gsttrace.h \
|
|
|
|
gstmeta.h \
|
|
|
|
gsttee.h \
|
|
|
|
gstxml.h \
|
|
|
|
cothreads.h
|
|
|
|
|
2000-09-14 20:31:03 +00:00
|
|
|
CFLAGS += -O2 -Wall
|
2000-02-27 23:18:38 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS)
|
|
|
|
libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
|
|
|
|
|
|
|
EXTRA_DIST = ROADMAP
|