More build fixes

Original commit message from CVS:
More build fixes
This commit is contained in:
Erik Walthinsen 2001-01-01 21:21:25 +00:00
parent 9977f8e252
commit cd744791c5
5 changed files with 61 additions and 67 deletions

View file

@ -5,10 +5,10 @@ else
SUBDIRS_LGG = SUBDIRS_LGG =
endif endif
SUBDIRS = include gst libs plugins tools test tests examples docs $(SUBDIRS_LGG) SUBDIRS = include gst libs plugins tools test tests examples $(SUBDIRS_LGG)
# These are all the possible subdirs # These are all the possible subdirs
DIST_SUBDIRS = include gst libs plugins tools test tests examples docs gstplay editor DIST_SUBDIRS = include gst libs plugins tools test tests examples gstplay editor
bin_SCRIPTS = gstreamer-config bin_SCRIPTS = gstreamer-config

View file

@ -534,7 +534,6 @@ components/bonobo-gstmediaplay/Makefile
test/Makefile test/Makefile
test/xml/Makefile test/xml/Makefile
test/bindings/Makefile test/bindings/Makefile
test/cothreads/Makefile
tests/Makefile tests/Makefile
tests/sched/Makefile tests/sched/Makefile
examples/Makefile examples/Makefile
@ -547,7 +546,6 @@ examples/queue3/Makefile
examples/queue4/Makefile examples/queue4/Makefile
examples/thread/Makefile examples/thread/Makefile
examples/xml/Makefile examples/xml/Makefile
examples/launch/Makefile
editor/Makefile editor/Makefile
tools/Makefile tools/Makefile
docs/Makefile docs/Makefile

View file

@ -1,4 +1,4 @@
bin_PROGRAMS = runxml createxml bin_PROGRAMS = createxml runxml
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)

View file

@ -3,11 +3,6 @@ SUBDIRS = . types meta elements
lib_LTLIBRARIES = libgst.la lib_LTLIBRARIES = libgst.la
GSTOBJECT_SRCS = \
gstobject.c
GSTOBJECT_INCLUDES = \
gstobject.h
if HAVE_CPU_I386 if HAVE_CPU_I386
GSTARCH_SRCS = gstcpuid_i386.s GSTARCH_SRCS = gstcpuid_i386.s
else else
@ -17,34 +12,34 @@ endif
EXTRA_libgst_la_SOURCES = \ EXTRA_libgst_la_SOURCES = \
gstcpuid_i386.s gstcpuid_i386.s
libgst_la_SOURCES = \ libgst_la_SOURCES = \
gst.c \ cothreads.c \
gstinfo.c \ gst.c \
$(GSTOBJECT_SRCS) \ gstautoplug.c \
gstpad.c \ gstbin.c \
gstautoplug.c \ gstbuffer.c \
gstbuffer.c \ gstbufferpool.c \
gstbufferpool.c \ gstcaps.c \
gstclock.c \ gstclock.c \
gstcpu.c \ gstcpu.c \
$(GSTARCH_SRCS) \ gstelement.c \
gstelement.c \
gstelementfactory.c \ gstelementfactory.c \
gstextratypes.c \ gstextratypes.c \
gstbin.c \ gstinfo.c \
gstpipeline.c \ gstmeta.c \
gstthread.c \ gstobject.c \
gsttype.c \ gstpad.c \
gstcaps.c \ gstpipeline.c \
gstprops.c \ gstplugin.c \
gstplugin.c \ gstprops.c \
gstutils.c \ gstscheduler.c \
gsttrace.c \ gsttee.c \
gstmeta.c \ gstthread.c \
gsttee.c \ gsttrace.c \
gstxml.c \ gsttype.c \
cothreads.c \ gstutils.c \
gstscheduler.c gstxml.c \
$(GSTARCH_SRCS)
# the compiler shoots cothreads.c in the head at -O6 # the compiler shoots cothreads.c in the head at -O6
cothreads.lo: cothreads.c cothreads.lo: cothreads.c
@ -53,40 +48,41 @@ cothreads.o: cothreads.c
$(COMPILE) -O2 -c $< $(COMPILE) -O2 -c $<
libgstincludedir = $(includedir)/gst libgstincludedir = $(includedir)/gst
libgstinclude_HEADERS = \ libgstinclude_HEADERS = \
gst.h \ cothreads.h \
gstinfo.h \ gst.h \
gstlog.h \ gstautoplug.h \
$(GSTOBJECT_INCLUDES) \ gstbin.h \
gstpad.h \ gstbuffer.h \
gstautoplug.h \ gstbufferpool.h \
gstbuffer.h \ gstcaps.h \
gstbufferpool.h \ gstclock.h \
gstclock.h \ gstcpu.h \
gstcpu.h \ gstelement.h \
gstelement.h \ gstextratypes.h \
gstextratypes.h \ gstinfo.h \
gstbin.h \ gstlog.h \
gstpipeline.h \ gstmeta.h \
gstthread.h \ gstobject.h \
gsttype.h \ gstpad.h \
gstcaps.h \ gstpipeline.h \
gstprops.h \ gstplugin.h \
gstpropsprivate.h \ gstprops.h \
gstplugin.h \ gstscheduler.h \
gstutils.h \ gsttee.h \
gsttrace.h \ gstthread.h \
gstmeta.h \ gsttrace.h \
gsttee.h \ gsttype.h \
gstxml.h \ gstutils.h \
cothreads.h \ gstxml.h
gstscheduler.h
noinst_HEADERS = \ noinst_HEADERS = \
gst_private.h \ gst_private.h \
gstarch.h \ gstarch.h \
gsti386.h \ gsti386.h \
gstppc.h gstppc.h \
gstpropsprivate.h
libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS) libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS)
libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE) libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)

View file

@ -1,4 +1,4 @@
bin_PROGRAMS = runxml createxml bin_PROGRAMS = createxml runxml
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)