Luis de Bethencourt | b870ff1 | 2010-07-12 22:37:47 -0300 | [diff] [blame] | 1 | plugin_LTLIBRARIES = libgstgaudieffects.la |
| 2 | |
Luis de Bethencourt | ad4ffc4 | 2012-05-16 17:49:12 +0100 | [diff] [blame] | 3 | ORC_SOURCE=gstgaudieffectsorc |
| 4 | include $(top_srcdir)/common/orc.mak |
| 5 | |
| 6 | libgstgaudieffects_la_SOURCES = \ |
| 7 | gstburn.c \ |
| 8 | gstchromium.c \ |
| 9 | gstdilate.c \ |
| 10 | gstdodge.c \ |
| 11 | gstexclusion.c \ |
| 12 | gstgaussblur.c \ |
| 13 | gstsolarize.c \ |
| 14 | gstplugin.c |
| 15 | nodist_libgstgaudieffects_la_SOURCES = $(ORC_NODIST_SOURCES) |
| 16 | |
| 17 | libgstgaudieffects_la_CFLAGS = \ |
| 18 | $(GST_PLUGINS_BASE_CFLAGS) \ |
| 19 | $(GST_CFLAGS) \ |
| 20 | $(ORC_CFLAGS) |
| 21 | |
| 22 | libgstgaudieffects_la_LIBADD = \ |
| 23 | $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \ |
| 24 | $(GST_BASE_LIBS) \ |
| 25 | $(GST_LIBS) \ |
| 26 | $(LIBM) \ |
| 27 | $(ORC_LIBS) |
Luis de Bethencourt | b870ff1 | 2010-07-12 22:37:47 -0300 | [diff] [blame] | 28 | libgstgaudieffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) |
Luis de Bethencourt | b870ff1 | 2010-07-12 22:37:47 -0300 | [diff] [blame] | 29 | |
| 30 | # headers we need but don't want installed |
| 31 | noinst_HEADERS = \ |
Luis de Bethencourt | ad4ffc4 | 2012-05-16 17:49:12 +0100 | [diff] [blame] | 32 | gstburn.h \ |
| 33 | gstchromium.h \ |
| 34 | gstdilate.h \ |
| 35 | gstdodge.h \ |
| 36 | gstexclusion.h \ |
| 37 | gstgaussblur.h \ |
| 38 | gstplugin.h \ |
| 39 | gstsolarize.h |
Tim-Philipp Müller | 21fb0dc | 2011-01-02 13:29:06 +0000 | [diff] [blame] | 40 | |
Sebastian Dröge | ab7c61d | 2012-06-07 16:23:09 +0200 | [diff] [blame] | 41 | EXTRA_SCRIPTS = blur-example.py burn-example.py |