annotate src/modplug/Makefile @ 17:cf1054422f81
trunk
[svn] - fix a lot of paths
- reduce more makefiles
author |
nenolod |
date |
Mon, 18 Sep 2006 03:38:44 -0700 |
parents |
|
children |
6b5a52635b3b |
rev |
line source |
17
|
1 include ../../mk/rules.mk
|
|
2 include ../../mk/init.mk
|
|
3
|
|
4 OBJECTIVE_LIBS = libmodplug$(SHARED_SUFFIX)
|
|
5 SUBDIRS = archive gui
|
|
6
|
|
7 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
|
|
8
|
|
9 CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I.. -I../.. -I../../intl
|
|
10 LIBADD = $(GTK_LIBS) -lstdc++ -lmodplug ./archive/libarchive.a ./gui/libgui.a
|
|
11 SOURCES = plugin.cxx modplugbmp.cxx
|
|
12
|
|
13 OBJECTS = ${SOURCES:.cxx=.o}
|
|
14
|
|
15 include ../../mk/objective.mk
|