mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
df32997396
Original commit message from CVS: Yes!, incsched is getting closer.
115 lines
2.3 KiB
Makefile
115 lines
2.3 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 \
|
|
gstqueue.c \
|
|
gstscheduler.c \
|
|
gstthread.c \
|
|
gsttrace.c \
|
|
gsttype.c \
|
|
gsttypefind.c \
|
|
gstutils.c \
|
|
gstxml.c \
|
|
gstparse.c \
|
|
$(GSTARCH_SRCS)
|
|
|
|
# the compiler shoots cothreads.c in the head at -O6
|
|
# FIXME: these manual rules break the dependency generation, so we have a
|
|
# nasty hack here.
|
|
LTCOMPILE2=$(LTCOMPILE) -O2
|
|
COMPILE2=$(COMPILE) -O2
|
|
cothreads.lo: cothreads.c
|
|
@echo '$(LTCOMPILE2) -c $<'; \
|
|
$(LTCOMPILE2) -Wp,-MD,.deps/$(*F).pp -c $<
|
|
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
|
|
< .deps/$(*F).pp > .deps/$(*F).P; \
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
>> .deps/$(*F).P; \
|
|
rm -f .deps/$(*F).pp
|
|
cothreads.o: cothreads.c
|
|
@echo '$(COMPILE2) -c $<'; \
|
|
$(COMPILE2) -Wp,-MD,.deps/$(*F).pp -c $<
|
|
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
|
|
< .deps/$(*F).pp > .deps/$(*F).P; \
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
>> .deps/$(*F).P; \
|
|
rm -f .deps/$(*F).pp
|
|
|
|
libgstincludedir = $(includedir)/gst
|
|
libgstinclude_HEADERS = \
|
|
cothreads.h \
|
|
gst.h \
|
|
gsttypes.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 \
|
|
gstqueue.h \
|
|
gstscheduler.h \
|
|
gstthread.h \
|
|
gsttrace.h \
|
|
gsttype.h \
|
|
gsttypefind.h \
|
|
gstutils.h \
|
|
gstparse.h \
|
|
gstxml.h
|
|
|
|
noinst_HEADERS = \
|
|
gst_private.h \
|
|
gstarch.h \
|
|
gsti386.h \
|
|
gstppc.h \
|
|
gstalpha.h \
|
|
gstarm.h \
|
|
gstpropsprivate.h
|
|
|
|
CFLAGS = $(LIBGST_CFLAGS)
|
|
LIBS = $(LIBGST_LIBS)
|
|
libgst_la_LDFLAGS = -version-info $(GSTREAMER_LIBVERSION)
|
|
|
|
EXTRA_DIST = ROADMAP
|