mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
2d199737c1
Original commit message from CVS: 2005-07-04 Andy Wingo <wingo@pobox.com> * examples/level/: * examples/level/Makefile.am: * examples/level/README: * examples/level/demo.c: * examples/level/plot.c: Examples moved out of the source dir. Not updated tho. * configure.ac: Add level to the build. * gst/level/Makefile.am: * gst/level/gstlevel.h: * gst/level/gstlevel.c: Cleaned up, ported to 0.9.
11 lines
257 B
Makefile
11 lines
257 B
Makefile
noinst_PROGRAMS = demo plot
|
|
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
demo_LDFLAGS = $(GTK_LIBS) $(GST_LIBS)
|
|
|
|
plot_SOURCES = plot.c
|
|
plot_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
plot_LDFLAGS = $(GTK_LIBS) $(GST_LIBS)
|
|
|
|
EXTRA_DIST = README
|