mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 10:38:27 +00:00
6eb6d5b9ac
Original commit message from CVS: * gst/goom/Makefile.am: * gst/goom/README: * gst/goom/config_param.c: * gst/goom/convolve_fx.c: * gst/goom/drawmethods.c: * gst/goom/drawmethods.h: * gst/goom/filters.c: * gst/goom/filters_mmx.s: * gst/goom/flying_stars_fx.c: * gst/goom/goom.h: * gst/goom/goom_config.h: * gst/goom/goom_config_param.h: * gst/goom/goom_core.c: * gst/goom/goom_filters.h: * gst/goom/goom_fx.h: * gst/goom/goom_graphic.h: * gst/goom/goom_plugin_info.h: * gst/goom/goom_tools.c: * gst/goom/goom_tools.h: * gst/goom/goom_typedefs.h: * gst/goom/goom_visual_fx.h: * gst/goom/graphic.c: * gst/goom/ifs.c: * gst/goom/ifs.h: * gst/goom/lines.c: * gst/goom/lines.h: * gst/goom/mathtools.c: * gst/goom/mathtools.h: * gst/goom/mmx.c: * gst/goom/motif_goom1.h: * gst/goom/motif_goom2.h: * gst/goom/plugin_info.c: * gst/goom/ppc_drawings.h: * gst/goom/ppc_zoom_ultimate.h: * gst/goom/sound_tester.c: * gst/goom/sound_tester.h: * gst/goom/surf3d.c: * gst/goom/surf3d.h: * gst/goom/tentacle3d.c: * gst/goom/tentacle3d.h: * gst/goom/v3d.c: * gst/goom/v3d.h: * gst/goom/xmmx.c: Add license headers in all source files. Remove filter.c from EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME which are not used right now. Fixes #557709.
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstgoom.la
|
|
|
|
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
|
|
|
|
if HAVE_CPU_PPC
|
|
# disable until someone figures out how to build these correctly on ppc
|
|
#ARCH_FILES = $(PPC_FILES)
|
|
ARCH_FILES =
|
|
endif
|
|
if HAVE_CPU_PPC64
|
|
# disable until someone figures out how to build these correctly on ppc
|
|
#ARCH_FILES = $(PPC_FILES)
|
|
ARCH_FILES =
|
|
endif
|
|
if HAVE_CPU_I386
|
|
ARCH_FILES = $(MMX_FILES)
|
|
ARCH_CFLAGS = -DBUILD_MMX
|
|
endif
|
|
|
|
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 \
|
|
goom_tools.c \
|
|
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 \
|
|
$(ARCH_FILES)
|
|
|
|
libgstgoom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS) $(LIBOIL_CFLAGS) $(ARCH_CFLAGS)
|
|
libgstgoom_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(LIBOIL_LIBS)
|
|
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = $(PPC_FILES) $(MMX_FILES)
|
|
|
|
.NOTPARALLEL:
|
|
|