gstreamer/ext/mpeg2dec/Makefile.am
Andy Wingo f6c63f0d8e removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with...
Original commit message from CVS:
* removal of //-style comments
* don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct,
and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
2002-03-19 04:10:05 +00:00

30 lines
735 B
Makefile

plugindir = $(libdir)/gst
plugin_LTLIBRARIES = libgstmpeg2dec.la
if HAVE_CPU_I386
ARCHFLAGS = -m486
else
ARCHFLAGS =
endif
libgstmpeg2dec_la_SOURCES = gstmpeg2dec.c
libgstmpeg2dec_la_CFLAGS = $(GST_CFLAGS) $(MPEG2DEC_CFLAGS) $(ARCHFLAGS) $(FOMIT_FRAME_POINTER) -ffast-math
libgstmpeg2dec_la_LIBADD = $(MPEG2DEC_LIBS)
libgstmpeg2dec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
#
# Use the following if you use mpeg2dec from CVS
#
#libgstmpeg2dec_la_LIBADD = -lmpeg2 -lcpuaccel
noinst_HEADERS = gstmpeg2dec.h
#noinst_PROGRAMS = perftest
#perftest_SOURCES = perftest.c $(libgstmpeg2dec_la_SOURCES)
#perftest_CFLAGS = $(GST_CFLAGS)
#perftest_LDADD = $(GST_LIBS)
#CFLAGS += -pg -Wall -fprofile-arcs -ftest-coverage
#CFLAGS += -pg -Wall -O3