mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
af45d10bbb
Original commit message from CVS: adding a test for lame stuff
17 lines
385 B
Makefile
17 lines
385 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstlame.la
|
|
|
|
libgstlame_la_SOURCES = gstlame.c
|
|
libgstlame_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstlame_la_LIBADD = $(GST_LIBS) $(LAME_LIBS)
|
|
libgstlame_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = gstlame.h
|
|
|
|
CFLAGS = $(GST_CFLAGS)
|
|
LIBS = $(GST_LIBS) $(LAME_LIBS)
|
|
testprogs = test-lame
|
|
TESTS = $(testprogs)
|
|
check_PROGRAMS = $(testprogs)
|
|
|