# HG changeset patch # User nenolod # Date 1138979493 28800 # Node ID cd9eda1f70349dde190628ef1a6ecafa01d233dc # Parent e74989045e6166199184958eeee4724975d94f6e [svn] modplug conversion diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/Makefile.am --- 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 diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/Makefile.in --- /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} diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/archive/Makefile.am --- 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 diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/archive/Makefile.in --- /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} diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/gui/Makefile.am --- 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 diff -r e74989045e61 -r cd9eda1f7034 Plugins/Input/modplug/gui/Makefile.in --- /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}