~ubuntu-branches/debian/sid/ember/sid

« back to all changes in this revision

Viewing changes to src/framework/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2009-07-23 07:46:40 UTC
  • Revision ID: james.westby@ubuntu.com-20090723074640-wh0ukzis0kda36qv
Tags: upstream-0.5.6
ImportĀ upstreamĀ versionĀ 0.5.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = -I$(top_srcdir)/src -I$(top_builddir)/src
 
2
 
 
3
SUBDIRS = bindings
 
4
 
 
5
noinst_LTLIBRARIES = libFramework.la
 
6
 
 
7
libFramework_la_LIBADD = \
 
8
        $(top_builddir)/src/framework/bindings/lua/atlas/liblua_Atlas.la $(top_builddir)/src/framework/bindings/lua/eris/liblua_Eris.la \
 
9
        $(top_builddir)/src/framework/bindings/lua/liblua_Framework.la
 
10
libFramework_la_SOURCES = ConsoleBackend.cpp ConsoleCommandWrapper.cpp \
 
11
        Exception.cpp Log.cpp LogObserver.cpp LoggingInstance.cpp StreamLogObserver.cpp \
 
12
        Tokeniser.cpp XMLCodec.cpp binreloc.c scrap.c 
 
13
 
 
14
noinst_HEADERS = ConsoleBackend.h ConsoleCommandWrapper.h ConsoleObject.h \
 
15
        Exception.h IGameView.h IResourceProvider.h IScriptingProvider.h Log.h \
 
16
        LogObserver.h LoggingInstance.h Service.h Singleton.h StreamLogObserver.h Tokeniser.h \
 
17
        XMLCodec.h binreloc.h float_cast.h osdir.h scrap.h 
 
18
libFramework_la_LDFLAGS = -no-undefined
 
19
 
 
20
if !HAVE_LIBTINYXML
 
21
libFramework_la_SOURCES += tinyxml/tinystr.cpp tinyxml/tinyxml.cpp tinyxml/tinyxmlerror.cpp \
 
22
               tinyxml/tinyxmlparser.cpp
 
23
 
 
24
noinst_HEADERS += tinyxml/tinystr.h tinyxml/tinyxml.h
 
25
endif