~ubuntu-branches/ubuntu/wily/tora/wily-proposed

« back to all changes in this revision

Viewing changes to test/configuration/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2007-05-29 13:13:36 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529131336-85ygaddivvmkd3xc
Tags: 1.3.21pre22-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules: call dh_iconcache
  - Remove g++ build dependency
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AM_CPPFLAGS  = -I$(top_srcdir)/ext/otl $(KDE_INCLUDES) $(QT_INCLUDES) $(LTDLINCL)
 
2
AM_CPPFLAGS  += $(PCRE_CFLAGS) \
 
3
        -DDEFAULT_PLUGIN_DIR=\"$(libdir)\" \
 
4
        -DTOVERSION=\"$(PACKAGE_VERSION)\" \
 
5
        $(ORACLE_CXXFLAGS) \
 
6
        -I$(top_srcdir)/src \
 
7
        $(CPPUNIT_CFLAGS) \
 
8
        $(QSCINTILLA_CXXFLAGS)
 
9
 
 
10
AM_LDFLAGS = $(PCRE_LIBS) \
 
11
        $(KDE_LDFLAGS) \
 
12
        $(X_LDFLAGS) \
 
13
        $(QT_LDFLAGS) \
 
14
        $(LIB_KPARTS) \
 
15
        $(LIB_KDEPRINT) \
 
16
        $(LIB_KDECORE) \
 
17
        $(LIB_KDEUI) \
 
18
        $(LIB_KIO) \
 
19
        $(LIB_KFILE) \
 
20
        $(LIB_DCOP) \
 
21
        $(LIB_KHTML) \
 
22
        -lqscintilla \
 
23
        $(CPPUNIT_LIBS) \
 
24
        $(LIBPTHREAD) \
 
25
        $(ORACLE_LDFLAGS) \
 
26
        $(QSCINTILLA_LDFLAGS)
 
27
 
 
28
if CPPUNIT
 
29
 
 
30
TESTS = ConfigurationTest
 
31
check_PROGRAMS = $(TESTS)
 
32
 
 
33
endif
 
34
ConfigurationTest_SOURCES = toconfigurationtest.h toconfigurationtest.cpp tomaintest.cpp 
 
35