Mercurial > audlegacy
changeset 608:e313dc370c0a trunk
[svn] Effects conversion
author | nenolod |
---|---|
date | Fri, 03 Feb 2006 07:15:37 -0800 |
parents | cd9eda1f7034 |
children | ee340e814595 |
files | Plugins/Effect/Makefile.am Plugins/Effect/Makefile.in Plugins/Effect/ladspa/Makefile.am Plugins/Effect/ladspa/Makefile.in |
diffstat | 4 files changed, 19 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/Effect/Makefile.am Fri Feb 03 07:11:33 2006 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -ALL_PLUGINS = ladspa -SUBDIRS = $(EFFECT_PLUGINS)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Effect/Makefile.in Fri Feb 03 07:15:37 2006 -0800 @@ -0,0 +1,4 @@ +include ../../mk/rules.mk +include ../../mk/objective.mk + +SUBDIRS = ladspa
--- a/Plugins/Effect/ladspa/Makefile.am Fri Feb 03 07:11:33 2006 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -lib_LTLIBRARIES = libladspa.la - -libdir = $(plugindir)/$(EFFECT_PLUGIN_DIR) - -libladspa_la_LDFLAGS = @PLUGIN_LDFLAGS@ -libladspa_la_LIBADD = @GTK_LIBS@ - -libladspa_la_SOURCES = ladspa.c ladspa.h - -INCLUDES = @GTK_CFLAGS@ -I$(top_builddir)/intl -I$(top_srcdir)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Effect/ladspa/Makefile.in Fri Feb 03 07:15:37 2006 -0800 @@ -0,0 +1,15 @@ +include ../../../mk/rules.mk +include ../../../mk/objective.mk + +OBJECTIVE_LIBS = libladspa.so + +LIBDIR = $(plugindir)/$(EFFECT_PLUGIN_DIR) + +LIBADD = $(GTK_LIBS) + +SOURCES = ladspa.c + +CFLAGS += -fPIC -DPIC $(GTK_CFLAGS) -I../../../intl -I../../.. + +OBJECTS = ${SOURCES:.c=.o} +