mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
b8a3a19774
Original commit message from CVS: Changed Makefiles to: detect xaudio (check header xaudio/decoder.h) detect mmx.h detect CSS (check if css.c is in plugins/dvdsrc), need something better. some LDFLAGS had *.la dependencies which failed for libtool The build is now 100% on my system.
32 lines
707 B
Makefile
32 lines
707 B
Makefile
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)/gst \
|
|
$(shell gnome-config --cflags gnomeui)
|
|
|
|
|
|
lib_LTLIBRARIES = libgsteditor.la
|
|
|
|
libgsteditor_la_SOURCES = \
|
|
gsteditor.c \
|
|
gsteditorelement.c \
|
|
gsteditorbin.c \
|
|
gsteditorcanvas.c \
|
|
gsteditorpad.c \
|
|
gsteditorconnection.c \
|
|
gstelementselect.c \
|
|
gsteditorcreate.c
|
|
|
|
libgsteditorincludedir = $(includedir)/gst
|
|
libgsteditorinclude_HEADERS = \
|
|
gsteditor.h
|
|
|
|
|
|
bin_PROGRAMS = editor
|
|
editor_LDFLAGS = libgsteditor.la
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gstelementselect.h \
|
|
gsteditorcreate.h
|
|
|
|
EXTRA_DIST = editor.glade editorelement.glade
|