2008-04-16 10:31:17 +00:00
|
|
|
|
2002-02-01 19:28:30 +00:00
|
|
|
plugin_LTLIBRARIES = libgstgoom.la
|
|
|
|
|
2008-02-23 01:51:37 +00:00
|
|
|
PPC_FILES=ppc_zoom_ultimate.s ppc_drawings.s ppc_drawings.h ppc_zoom_ultimate.h
|
|
|
|
MMX_FILES=mmx.c xmmx.c mmx.h xmmx.h
|
2002-02-02 18:49:03 +00:00
|
|
|
|
2008-02-23 01:51:37 +00:00
|
|
|
if HAVE_CPU_PPC
|
2008-03-23 13:31:15 +00:00
|
|
|
# disable until someone figures out how to build these correctly on ppc
|
|
|
|
#ARCH_FILES = $(PPC_FILES)
|
|
|
|
ARCH_FILES =
|
2008-02-23 01:51:37 +00:00
|
|
|
endif
|
|
|
|
if HAVE_CPU_PPC64
|
2008-03-23 13:31:15 +00:00
|
|
|
# disable until someone figures out how to build these correctly on ppc
|
|
|
|
#ARCH_FILES = $(PPC_FILES)
|
|
|
|
ARCH_FILES =
|
2008-02-23 01:51:37 +00:00
|
|
|
endif
|
|
|
|
if HAVE_CPU_I386
|
|
|
|
ARCH_FILES = $(MMX_FILES)
|
2008-02-26 10:09:38 +00:00
|
|
|
ARCH_CFLAGS = -DBUILD_MMX
|
2008-02-23 01:51:37 +00:00
|
|
|
endif
|
2008-10-28 06:50:57 +00:00
|
|
|
|
2008-02-23 01:51:37 +00:00
|
|
|
libgstgoom_la_SOURCES = \
|
|
|
|
gstgoom.c gstgoom.h \
|
|
|
|
drawmethods.c drawmethods.h \
|
|
|
|
sound_tester.c sound_tester.h \
|
|
|
|
mathtools.c mathtools.h \
|
|
|
|
lines.c lines.h ifs.c ifs.h surf3d.c surf3d.h \
|
|
|
|
tentacle3d.c tentacle3d.h v3d.c v3d.h \
|
|
|
|
convolve_fx.c flying_stars_fx.c \
|
|
|
|
goom_fx.h goom_visual_fx.h \
|
|
|
|
motif_goom1.h motif_goom2.h \
|
|
|
|
plugin_info.c goom_plugin_info.h \
|
2008-04-16 10:31:17 +00:00
|
|
|
goom_tools.c \
|
2008-02-23 01:51:37 +00:00
|
|
|
config_param.c filters.c goom_core.c graphic.c \
|
|
|
|
goom.h goom_typedefs.h goom_graphic.h \
|
|
|
|
goom_config_param.h goom_visual_fx.h goom_filters.h \
|
|
|
|
goom_tools.h goom_tools.h goom_config.h \
|
2015-06-02 16:29:36 +00:00
|
|
|
gstaudiovisualizer.c gstaudiovisualizer.h \
|
2008-02-23 01:51:37 +00:00
|
|
|
$(ARCH_FILES)
|
2005-09-23 04:23:00 +00:00
|
|
|
|
2010-06-05 01:16:25 +00:00
|
|
|
libgstgoom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS) $(ARCH_CFLAGS) $(ORC_CFLAGS)
|
2015-06-02 16:29:36 +00:00
|
|
|
libgstgoom_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION) $(LIBM) $(ORC_LIBS)
|
add docs to build
Original commit message from CVS:
* Makefile.am:
* configure.ac:
add docs to build
* common/plugins.xsl:
wrap Description into a refsect2
* docs/Makefile.am:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* gst/goom/Makefile.am:
* gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
(gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
(gst_goom_sink_setcaps), (gst_goom_src_setcaps),
(gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
(gst_goom_change_state):
* gst/goom/gstgoom.h:
GstGOOM -> GstGoom
add an example launch line
* gst/level/gstlevel.h:
* gst/monoscope/gstmonoscope.c:
cleanups
2005-09-01 17:55:14 +00:00
|
|
|
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2012-10-24 10:14:50 +00:00
|
|
|
libgstgoom_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
2002-02-01 19:28:30 +00:00
|
|
|
|
2008-10-28 06:50:57 +00:00
|
|
|
EXTRA_DIST = $(PPC_FILES) $(MMX_FILES)
|
2008-02-23 01:51:37 +00:00
|
|
|
|
|
|
|
.NOTPARALLEL:
|