mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
cd744791c5
Original commit message from CVS: More build fixes
90 lines
1.5 KiB
Makefile
90 lines
1.5 KiB
Makefile
# cheap trick to build . first...
|
|
SUBDIRS = . types meta elements
|
|
|
|
lib_LTLIBRARIES = libgst.la
|
|
|
|
if HAVE_CPU_I386
|
|
GSTARCH_SRCS = gstcpuid_i386.s
|
|
else
|
|
GSTARCH_SRCS =
|
|
endif
|
|
|
|
EXTRA_libgst_la_SOURCES = \
|
|
gstcpuid_i386.s
|
|
|
|
libgst_la_SOURCES = \
|
|
cothreads.c \
|
|
gst.c \
|
|
gstautoplug.c \
|
|
gstbin.c \
|
|
gstbuffer.c \
|
|
gstbufferpool.c \
|
|
gstcaps.c \
|
|
gstclock.c \
|
|
gstcpu.c \
|
|
gstelement.c \
|
|
gstelementfactory.c \
|
|
gstextratypes.c \
|
|
gstinfo.c \
|
|
gstmeta.c \
|
|
gstobject.c \
|
|
gstpad.c \
|
|
gstpipeline.c \
|
|
gstplugin.c \
|
|
gstprops.c \
|
|
gstscheduler.c \
|
|
gsttee.c \
|
|
gstthread.c \
|
|
gsttrace.c \
|
|
gsttype.c \
|
|
gstutils.c \
|
|
gstxml.c \
|
|
$(GSTARCH_SRCS)
|
|
|
|
# the compiler shoots cothreads.c in the head at -O6
|
|
cothreads.lo: cothreads.c
|
|
$(LTCOMPILE) -O2 -c $<
|
|
cothreads.o: cothreads.c
|
|
$(COMPILE) -O2 -c $<
|
|
|
|
libgstincludedir = $(includedir)/gst
|
|
libgstinclude_HEADERS = \
|
|
cothreads.h \
|
|
gst.h \
|
|
gstautoplug.h \
|
|
gstbin.h \
|
|
gstbuffer.h \
|
|
gstbufferpool.h \
|
|
gstcaps.h \
|
|
gstclock.h \
|
|
gstcpu.h \
|
|
gstelement.h \
|
|
gstextratypes.h \
|
|
gstinfo.h \
|
|
gstlog.h \
|
|
gstmeta.h \
|
|
gstobject.h \
|
|
gstpad.h \
|
|
gstpipeline.h \
|
|
gstplugin.h \
|
|
gstprops.h \
|
|
gstscheduler.h \
|
|
gsttee.h \
|
|
gstthread.h \
|
|
gsttrace.h \
|
|
gsttype.h \
|
|
gstutils.h \
|
|
gstxml.h
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gst_private.h \
|
|
gstarch.h \
|
|
gsti386.h \
|
|
gstppc.h \
|
|
gstpropsprivate.h
|
|
|
|
libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS)
|
|
libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
|
|
|
EXTRA_DIST = ROADMAP
|