Mercurial > audlegacy
changeset 607:cd9eda1f7034 trunk
[svn] modplug conversion
author | nenolod |
---|---|
date | Fri, 03 Feb 2006 07:11:33 -0800 |
parents | e74989045e61 |
children | e313dc370c0a |
files | Plugins/Input/modplug/Makefile.am Plugins/Input/modplug/Makefile.in Plugins/Input/modplug/archive/Makefile.am Plugins/Input/modplug/archive/Makefile.in Plugins/Input/modplug/gui/Makefile.am Plugins/Input/modplug/gui/Makefile.in |
diffstat | 6 files changed, 39 insertions(+), 40 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/Input/modplug/Makefile.am Fri Feb 03 06:51:47 2006 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -if HAVE_MODPLUG - -lib_LTLIBRARIES = libmodplug.la -SUBDIRS = archive gui - -endif - -libdir = $(plugindir)/$(INPUT_PLUGIN_DIR) - -INCLUDES = @GTK_CFLAGS@ -I.. -I$(top_srcdir) -I$(top_builddir)/intl -libmodplug_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(GTK_LIBS) -lstdc++ -lmodplug ./archive/libarchive.la ./gui/libgui.la -libmodplug_la_SOURCES = plugin.cpp modplugbmp.cpp - -noinst_HEADERS = modplugbmp.h stddefs.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Input/modplug/Makefile.in Fri Feb 03 07:11:33 2006 -0800 @@ -0,0 +1,13 @@ +include ../../../mk/rules.mk +include ../../../mk/objective.mk + +OBJECTIVE_LIBS = libmodplug.so +SUBDIRS = archive gui + +LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) + +CXXFLAGS += -fPIC -DPIC $(GTK_CFLAGS) -I.. -I../../.. -I../../../intl +LIBADD = $(GTK_LIBS) -lstdc++ -lmodplug ./archive/libarchive.a ./gui/libgui.a +SOURCES = plugin.cpp modplugbmp.cpp + +OBJECTS = ${SOURCES:.cpp=.o}
--- a/Plugins/Input/modplug/archive/Makefile.am Fri Feb 03 06:51:47 2006 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -INCLUDES = -I../../.. - -noinst_LTLIBRARIES = libarchive.la -libarchive_la_LDFLAGS = $(PLUGIN_LDFLAGS) -libarchive_la_SOURCES = archive.cpp \ - open.cpp \ - arch_raw.cpp \ - arch_gzip.cpp \ - arch_zip.cpp \ - arch_rar.cpp \ - arch_bz2.cpp - -noinst_HEADERS = archive.h \ - open.h \ - arch_raw.h \ - arch_gzip.h \ - arch_zip.h \ - arch_rar.h \ - arch_bz2.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Input/modplug/archive/Makefile.in Fri Feb 03 07:11:33 2006 -0800 @@ -0,0 +1,16 @@ +include ../../../../mk/rules.mk +include ../../../../mk/objective.mk + +CXXFLAGS += -fPIC -DPIC -I../../.. + +OBJECTIVE_LIBS_NOINST = libarchive.a + +SOURCES = archive.cpp \ + open.cpp \ + arch_raw.cpp \ + arch_gzip.cpp \ + arch_zip.cpp \ + arch_rar.cpp \ + arch_bz2.cpp + +OBJECTS = ${SOURCES:.cpp=.o}
--- a/Plugins/Input/modplug/gui/Makefile.am Fri Feb 03 06:51:47 2006 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ -INCLUDES = @GTK_CFLAGS@ - -noinst_LTLIBRARIES = libgui.la -libgui_la_LDFLAGS = $(PLUGIN_LDFLAGS) -libgui_la_SOURCES = main.cpp support.cpp interface.cpp callbacks.cpp - -noinst_HEADERS = callbacks.h interface.h support.h main.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Input/modplug/gui/Makefile.in Fri Feb 03 07:11:33 2006 -0800 @@ -0,0 +1,10 @@ +include ../../../../mk/rules.mk +include ../../../../mk/objective.mk + +CFLAGS += -fPIC -DPIC $(GTK_CFLAGS) -I../../../../intl -I../../../.. +CXXFLAGS += $(CFLAGS) + +OBJECTIVE_LIBS_NOINST = libgui.a +SOURCES = main.cpp support.cpp interface.cpp callbacks.cpp + +OBJECTS = ${SOURCES:.cpp=.o}